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
Name |
Description |
in |
16‐byte input block. |
out |
16‐byte output buffer (may equal |
ks |
Expanded SEED key schedule. |
enc |
Nonzero to encrypt, or zero to decrypt. |
Created with MrDocs