Encrypt or decrypt data with AES in 128-bit OFB mode (deprecated; prefer EVP).
Declared in <openssl/aes.h>
[[deprecated]]
void
AES_ofb128_encrypt(
unsigned char const* in,
unsigned char* out,
size_t length,
AES_KEY const* key,
unsigned char* ivec,
int* num);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| in | Input bytes of length length. |
| out | Output buffer of length length (may equal in). |
| length | Number of bytes to process. |
| key | Expanded AES key schedule. |
| ivec | 16-byte IV updated in place. |
| num | Feedback offset into the IV (updated; typically starts at 0). |