Encrypt or decrypt with AES in infinite garble extension (IGE) mode (deprecated; prefer EVP).
Declared in <openssl/aes.h>
[[deprecated]]
void
AES_ige_encrypt(
unsigned char const* in,
unsigned char* out,
size_t length,
AES_KEY const* key,
unsigned char* ivec,
int const enc);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| in | Input bytes of length length (multiple of AES_BLOCK_SIZE). |
| out | Output buffer of length length (may equal in). |
| length | Number of bytes to process. |
| key | Expanded AES key schedule matching enc. |
| ivec | 32-byte (two-block) IV updated in place. |
| enc | AES_ENCRYPT to encrypt, or AES_DECRYPT to decrypt. |