Encrypt one 8-byte IDEA block in ECB mode (deprecated; prefer EVP).
Declared in <openssl/idea.h>
[[deprecated]]
void
IDEA_ecb_encrypt(
unsigned char const* in,
unsigned char* out,
IDEA_KEY_SCHEDULE* ks);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| in | 8-byte plaintext block. |
| out | 8-byte ciphertext buffer (may equal in). |
| ks | Expanded encrypt schedule from IDEA_set_encrypt_key(). |