Encrypt or decrypt data with IDEA in 64‐bit OFB mode (deprecated; prefer EVP).
Synopsis
Declared in <openssl/idea.h>
[[deprecated]]
void
IDEA_ofb64_encrypt(
unsigned char const* in,
unsigned char* out,
long length,
IDEA_KEY_SCHEDULE* ks,
unsigned char* iv,
int* num);
|
Warning
|
Deprecated. Use of this entity is allowed but discouraged. |
Parameters
Name |
Description |
in |
Input bytes of length |
out |
Output buffer of length |
length |
Number of bytes to process. |
ks |
Expanded IDEA encryption schedule. |
iv |
8‐byte IV updated in place. |
num |
Feedback offset into the IV (updated; typically starts at 0). |
Created with MrDocs