Encrypt one 8‐byte IDEA block in ECB mode (deprecated; prefer EVP).

Synopsis

Declared in <openssl/idea.h>

[[deprecated]]
void
IDEA_ecb_encrypt(
    unsigned char const* in,
    unsigned char* out,
    IDEA_KEY_SCHEDULE* ks);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Parameters

Name

Description

in

8‐byte plaintext block.

out

8‐byte ciphertext buffer (may equal in).

ks

Expanded encrypt schedule from IDEA_set_encrypt_key().

Created with MrDocs