[−][src]Module openssl::aes 
Low level AES IGE functionality
AES ECB, CBC, XTS, CTR, CFB, GCM and other conventional symmetric encryption
modes are found in symm.  This is the implementation of AES IGE.
Advanced Encryption Standard (AES) provides symmetric key cipher that
the same key is used to encrypt and decrypt data.  This implementation
uses 128, 192, or 256 bit keys.  This module provides functions to
create a new key with new_encrypt and perform an encryption/decryption
using that key with aes_ige.
The symm module should be used in preference to this module in most cases.
The IGE block cypher is a non-traditional cipher mode.  More traditional AES
encryption methods are found in the Crypter and Cipher structs.
Examples
use openssl::aes::{AesKey, aes_ige}; use openssl::symm::Mode; let key = b"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F"; let plaintext = b"\x12\x34\x56\x78\x90\x12\x34\x56\x12\x34\x56\x78\x90\x12\x34\x56"; let mut iv = *b"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F\ \x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; let key = AesKey::new_encrypt(key).unwrap(); let mut output = [0u8; 16]; aes_ige(plaintext, &mut output, &key, &mut iv, Mode::Encrypt); assert_eq!(output, *b"\xa6\xad\x97\x4d\x5c\xea\x1d\x36\xd2\xf3\x67\x98\x09\x07\xed\x32");
Structs
| AesKey | The key used to encrypt or decrypt cipher blocks. | 
| KeyError | Provides Error handling for parsing keys. | 
Functions
| aes_ige | Performs AES IGE encryption or decryption |