[#DES_ofb64_encrypt] = DES_ofb64_encrypt :mrdocs: Encrypt or decrypt with DES in 64‐bit OFB mode (deprecated; prefer EVP). == Synopsis Declared in `<openssl/des.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] void DES_ofb64_encrypt( unsigned char const* in, unsigned char* out, long length, xref:DES_key_schedule.adoc[DES_key_schedule]* schedule, xref:DES_cblock.adoc[DES_cblock]* ivec, int* num); ---- [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* | Input bytes of length `length.` | *out* | Output buffer of length `length.` | *length* | Number of bytes to process. | *schedule* | Expanded DES key schedule. | *ivec* | 8‐byte IV updated in place. | *num* | Feedback offset into the IV (updated; typically starts at 0). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#