Encrypt one 16-byte Camellia block (deprecated; prefer EVP_EncryptInit_ex and related EVP APIs).
Declared in <openssl/camellia.h>
[[deprecated]]
void
Camellia_encrypt(
unsigned char const* in,
unsigned char* out,
CAMELLIA_KEY const* key);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| in | 16-byte plaintext block. |
| out | 16-byte ciphertext buffer (may equal in). |
| key | Expanded Camellia key from Camellia_set_key(). |