Callback that encrypts or decrypts a contiguous span of 16-byte blocks in ECB mode.
Declared in <openssl/modes.h>
typedef void(* ecb128_f)(unsigned char const*, unsigned char*, size_t, void const*, int);
| Name | Description |
|---|---|
| in | Input bytes of length len (multiple of 16). |
| out | Output buffer of length len. |
| len | Number of bytes to process. |
| key | Cipher-specific expanded key schedule. |
| enc | Non-zero to encrypt, zero to decrypt. |