summaryrefslogtreecommitdiffstats
path: root/plugins/cryptopan/cryptopan.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/cryptopan/cryptopan.c')
-rw-r--r--plugins/cryptopan/cryptopan.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/cryptopan/cryptopan.c b/plugins/cryptopan/cryptopan.c
index 14f185f..5eb54c7 100644
--- a/plugins/cryptopan/cryptopan.c
+++ b/plugins/cryptopan/cryptopan.c
@@ -228,7 +228,14 @@ void cryptopan_getopt(int* argc, char** argv[])
}
if (!EVP_CipherInit_ex(ctx, EVP_aes_128_ecb(), NULL, key, iv, 1)) {
unsigned long e = ERR_get_error();
- fprintf(stderr, "%s:%s:%s\n", ERR_lib_error_string(e), ERR_func_error_string(e), ERR_reason_error_string(e));
+ fprintf(stderr, "%s:%s:%s\n",
+ ERR_lib_error_string(e),
+#if OPENSSL_VERSION_NUMBER < 0x30000000L
+ ERR_func_error_string(e),
+#else
+ "",
+#endif
+ ERR_reason_error_string(e));
usage("unable to initialize AES128 cipher");
}
EVP_CIPHER_CTX_set_padding(ctx, 0);