diff options
author | Peiwei Hu <jlu.hpw@foxmail.com> | 2024-11-19 10:19:02 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-11-22 12:11:34 +0100 |
commit | 7b08f2566b9a0feee8dfab8b6e96f02e80a152f4 (patch) | |
tree | c2ff57b55ec20b06c0e8e5e94001fea7c2589a97 /doc | |
parent | Fix wrong return value checks for some functions (diff) | |
download | openssl-7b08f2566b9a0feee8dfab8b6e96f02e80a152f4.tar.xz openssl-7b08f2566b9a0feee8dfab8b6e96f02e80a152f4.zip |
Remove the negative return values of EVP_KDF_* functions in documents
None of the EVP_KDF_* functions will ever return a negative value.
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25811)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man3/EVP_KDF.pod | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/man3/EVP_KDF.pod b/doc/man3/EVP_KDF.pod index 9447651a34..1a5bbb1fcc 100644 --- a/doc/man3/EVP_KDF.pod +++ b/doc/man3/EVP_KDF.pod @@ -283,9 +283,7 @@ EVP_KDF_get0_name() returns the name of the KDF, or NULL on error. EVP_KDF_names_do_all() returns 1 if the callback was called for all names. A return value of 0 means that the callback was not called for any names. -The remaining functions return 1 for success and 0 or a negative value for -failure. In particular, a return value of -2 indicates the operation is not -supported by the KDF algorithm. +The remaining functions return 1 for success and 0 for failure. =head1 NOTES |