]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/kdf.c
kdf: use the app's libctx and property query when searching for algorithms
[thirdparty/openssl.git] / apps / kdf.c
index c4892ed20ec44b2e57f3902b6a76e7c06d054983..89ee1f69c7669ff85263e0bd1a7f299103008ee9 100644 (file)
@@ -138,7 +138,8 @@ opthelp:
     if (argc != 1)
         goto opthelp;
 
-    if ((kdf = EVP_KDF_fetch(NULL, argv[0], NULL)) == NULL) {
+    if ((kdf = EVP_KDF_fetch(app_get0_libctx(), argv[0],
+                             app_get0_propq())) == NULL) {
         BIO_printf(bio_err, "Invalid KDF name %s\n", argv[0]);
         goto opthelp;
     }