Encrypt or decrypt one 16-byte SEED block in ECB mode (deprecated; prefer EVP).
Declared in <openssl/seed.h>
[[deprecated]]
void
SEED_ecb_encrypt(
unsigned char const* in,
unsigned char* out,
SEED_KEY_SCHEDULE const* ks,
int enc);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| in | 16-byte input block. |
| out | 16-byte output buffer (may equal in). |
| ks | Expanded SEED key schedule. |
| enc | Nonzero to encrypt, or zero to decrypt. |