Encrypt or decrypt with DES in PCBC mode (deprecated; prefer EVP).
Declared in <openssl/des.h>
[[deprecated]]
void
DES_pcbc_encrypt(
unsigned char const* input,
unsigned char* output,
long length,
DES_key_schedule* schedule,
DES_cblock* ivec,
int enc);
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| input | Input bytes of length length. |
| output | Output buffer of length length. |
| length | Number of bytes to process. |
| schedule | Expanded DES key schedule. |
| ivec | 8-byte IV updated in place. |
| enc | DES_ENCRYPT to encrypt, or DES_DECRYPT to decrypt. |