SEED_encrypt

Encrypt one 16-byte SEED block (deprecated; prefer EVP).

Synopsis

Declared in <openssl/seed.h>

[[deprecated]]
void
SEED_encrypt(
    unsigned char const s[],
    unsigned char d[],
    SEED_KEY_SCHEDULE const* ks);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Parameters

NameDescription
s16-byte plaintext block.
d16-byte ciphertext buffer (may equal s).
ksExpanded SEED key from SEED_set_key().