aboutsummaryrefslogtreecommitdiffstats
path: root/doc/man3/EVP_PKEY_verify.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man3/EVP_PKEY_verify.pod')
-rw-r--r--doc/man3/EVP_PKEY_verify.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/EVP_PKEY_verify.pod b/doc/man3/EVP_PKEY_verify.pod
index 4baf45c6e4..26167835ae 100644
--- a/doc/man3/EVP_PKEY_verify.pod
+++ b/doc/man3/EVP_PKEY_verify.pod
@@ -60,7 +60,7 @@ Verify signature using PKCS#1 and SHA256 digest:
* NB: assumes verify_key, sig, siglen md and mdlen are already set up
* and that verify_key is an RSA public key
*/
- ctx = EVP_PKEY_CTX_new(verify_key);
+ ctx = EVP_PKEY_CTX_new(verify_key, NULL /* no engine */);
if (!ctx)
/* Error occurred */
if (EVP_PKEY_verify_init(ctx) <= 0)