[#Camellia_encrypt] = Camellia_encrypt :mrdocs: Encrypt one 16‐byte Camellia block (deprecated; prefer EVP_EncryptInit_ex and related EVP APIs). == Synopsis Declared in `<openssl/camellia.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] void Camellia_encrypt( unsigned char const* in, unsigned char* out, xref:CAMELLIA_KEY.adoc[CAMELLIA_KEY] const* key); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Parameters [cols="1,4"] |=== | Name| Description | *in* | 16‐byte plaintext block. | *out* | 16‐byte ciphertext buffer (may equal `in).` | *key* | Expanded Camellia key from Camellia_set_key(). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#