Clarify return values for EVP_DigestVerifyFinal.
authorAdam Eijdenberg <eijdenberg@google.com>
Mon, 19 Oct 2015 18:16:25 +0000 (11:16 -0700)
committerRich Salz <rsalz@openssl.org>
Thu, 22 Oct 2015 22:27:48 +0000 (18:27 -0400)
Previous language was unclear.  New language isn't pretty but I believe
it is more accurate.

Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Ben Laurie <ben@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
doc/crypto/EVP_DigestVerifyInit.pod

index 44d3cdbb0da0568c5df1aea499cb9ef606fd1cdf..338fc74616cd7247c5fa3734a84047dcef4e11eb 100644 (file)
@@ -36,10 +36,11 @@ B<sig> of length B<siglen>.
 EVP_DigestVerifyInit() and EVP_DigestVerifyUpdate() return 1 for success and 0
 for failure.
 
-Unlike other functions the return value 0 from EVP_DigestVerifyFinal() only
-indicates that the signature did not verify successfully (that is tbs did
-not match the original data or the signature was of invalid form) it is not an
-indication of a more serious error.
+EVP_DigestVerifyFinal() returns 1 for success; any other value indicates
+failure.  A return value of zero indicates that the signature did not verify
+successfully (that is, tbs did not match the original data or the signature had
+an invalid form), while other values indicate a more serious error (and
+sometimes also indicate an invalid signature form).
 
 The error codes can be obtained from L<ERR_get_error(3)>.