This change fixes a compilation error when using OpenSSL 1.1.
The installation instructions recommend OpenSSL 1.0.2, but this version has long been out of support. I tried to compile against OpenSSL 1.1, but received errors regarding the use of EVP_CIPHER_CTX. This is now an opaque struct, which can only be used by pointer.
This change fixes a compilation error when using OpenSSL 1.1.
The installation instructions recommend OpenSSL 1.0.2, but this version has long been out of support. I tried to compile against OpenSSL 1.1, but received errors regarding the use of
EVP_CIPHER_CTX
. This is now an opaque struct, which can only be used by pointer.