Encrypt or decrypt data with SEED in 128-bit CFB mode (deprecated; prefer EVP).
Declared in <openssl/seed.h>
[[deprecated]]
void
SEED_cfb128_encrypt(
unsigned char const* in,
unsigned char* out,
size_t len,
SEED_KEY_SCHEDULE const* ks,
unsigned char ivec[],
int* num,
int enc);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| in | Input bytes of length len. |
| out | Output buffer of length len. |
| len | Number of bytes to process. |
| ks | Expanded SEED key schedule. |
| ivec | 16-byte IV updated in place. |
| num | Feedback offset into the IV (updated; typically starts at 0). |
| enc | Nonzero to encrypt, or zero to decrypt. |