SEED_ecb_encrypt

Encrypt or decrypt one 16-byte SEED block in ECB mode (deprecated; prefer EVP).

Synopsis

Declared in <openssl/seed.h>

[[deprecated]]
void
SEED_ecb_encrypt(
    unsigned char const* in,
    unsigned char* out,
    SEED_KEY_SCHEDULE const* ks,
    int enc);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Parameters

NameDescription
in16-byte input block.
out16-byte output buffer (may equal in).
ksExpanded SEED key schedule.
encNonzero to encrypt, or zero to decrypt.