[#BF_ecb_encrypt] = BF_ecb_encrypt :mrdocs: Encrypt or decrypt one 8‐byte Blowfish block in ECB mode (deprecated). == Synopsis Declared in `<openssl/blowfish.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] void BF_ecb_encrypt( unsigned char const* in, unsigned char* out, xref:BF_KEY.adoc[BF_KEY] const* key, int enc); ---- [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* | 8‐byte input block. | *out* | 8‐byte output buffer (may equal `in).` | *key* | Expanded Blowfish key schedule from BF_set_key(). | *enc* | BF_ENCRYPT to encrypt, or BF_DECRYPT to decrypt. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#