diff options
Diffstat (limited to 'src/lib/libcrypto/doc/EVP_PKEY_verify.pod')
-rw-r--r-- | src/lib/libcrypto/doc/EVP_PKEY_verify.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/doc/EVP_PKEY_verify.pod b/src/lib/libcrypto/doc/EVP_PKEY_verify.pod index 10633da3f2..f93e5fc6c3 100644 --- a/src/lib/libcrypto/doc/EVP_PKEY_verify.pod +++ b/src/lib/libcrypto/doc/EVP_PKEY_verify.pod | |||
@@ -69,7 +69,7 @@ Verify signature using PKCS#1 and SHA256 digest: | |||
69 | /* Error */ | 69 | /* Error */ |
70 | 70 | ||
71 | /* Perform operation */ | 71 | /* Perform operation */ |
72 | ret = EVP_PKEY_verify(ctx, md, mdlen, sig, siglen); | 72 | ret = EVP_PKEY_verify(ctx, sig, siglen, md, mdlen); |
73 | 73 | ||
74 | /* ret == 1 indicates success, 0 verify failure and < 0 for some | 74 | /* ret == 1 indicates success, 0 verify failure and < 0 for some |
75 | * other error. | 75 | * other error. |