[openssl-users] EVP_CIPHER_CTX array not compiling
Salz, Rich
rsalz at akamai.com
Sun Apr 23 13:36:43 UTC 2017
>#define OTEXT_AES_KEY_INIT(ctx, buf) { \
> EVP_CIPHER_CTX_init(ctx); \
> EVP_EncryptInit_ex(ctx, EVP_aes_128_ecb(), NULL, buf, ZERO_IV); \
> }
Most of the datatypes are now opaque. This means you can't have an EVP_CIPHER_CTX object, but instead a pointer to it. Don't call the init function, call the new function. And then that has rippling changes in your code.
More information about the openssl-users
mailing list