diff options
author | schwarze <> | 2024-12-06 15:01:01 +0000 |
---|---|---|
committer | schwarze <> | 2024-12-06 15:01:01 +0000 |
commit | 9026f3119d0fb71e88abcced3e32e113044416c2 (patch) | |
tree | 0042e938291ae3ae765989543da67b3f6f0a597c /src/lib/libcrypto/man/EVP_DigestInit.3 | |
parent | eced54870588db8076b1f1d7056ec7ad5e00d939 (diff) | |
download | openbsd-9026f3119d0fb71e88abcced3e32e113044416c2.tar.gz openbsd-9026f3119d0fb71e88abcced3e32e113044416c2.tar.bz2 openbsd-9026f3119d0fb71e88abcced3e32e113044416c2.zip |
Adjust the return type and value of EVP_MD_CTX_init(3)
and EVP_CIPHER_CTX_init(3) after tb@ changed these to OpenSSL 1.1 semantics
in evp.h rev. 1.124 on March 2 this year.
Diffstat (limited to 'src/lib/libcrypto/man/EVP_DigestInit.3')
-rw-r--r-- | src/lib/libcrypto/man/EVP_DigestInit.3 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/EVP_DigestInit.3 b/src/lib/libcrypto/man/EVP_DigestInit.3 index 2b93f7fcb2..668c189bc1 100644 --- a/src/lib/libcrypto/man/EVP_DigestInit.3 +++ b/src/lib/libcrypto/man/EVP_DigestInit.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: EVP_DigestInit.3,v 1.36 2024/12/06 14:27:49 schwarze Exp $ | 1 | .\" $OpenBSD: EVP_DigestInit.3,v 1.37 2024/12/06 15:01:01 schwarze Exp $ |
2 | .\" full merge up to: OpenSSL 7f572e95 Dec 2 13:57:04 2015 +0000 | 2 | .\" full merge up to: OpenSSL 7f572e95 Dec 2 13:57:04 2015 +0000 |
3 | .\" selective merge up to: OpenSSL 24a535ea Sep 22 13:14:20 2020 +0100 | 3 | .\" selective merge up to: OpenSSL 24a535ea Sep 22 13:14:20 2020 +0100 |
4 | .\" | 4 | .\" |
@@ -114,7 +114,7 @@ | |||
114 | .Fo EVP_MD_CTX_free | 114 | .Fo EVP_MD_CTX_free |
115 | .Fa "EVP_MD_CTX *ctx" | 115 | .Fa "EVP_MD_CTX *ctx" |
116 | .Fc | 116 | .Fc |
117 | .Ft void | 117 | .Ft int |
118 | .Fo EVP_MD_CTX_init | 118 | .Fo EVP_MD_CTX_init |
119 | .Fa "EVP_MD_CTX *ctx" | 119 | .Fa "EVP_MD_CTX *ctx" |
120 | .Fc | 120 | .Fc |
@@ -427,7 +427,8 @@ object or | |||
427 | .Dv NULL | 427 | .Dv NULL |
428 | for failure. | 428 | for failure. |
429 | .Pp | 429 | .Pp |
430 | .Fn EVP_MD_CTX_reset | 430 | .Fn EVP_MD_CTX_reset , |
431 | .Fn EVP_MD_CTX_init , | ||
431 | and | 432 | and |
432 | .Fn EVP_MD_CTX_cleanup | 433 | .Fn EVP_MD_CTX_cleanup |
433 | always return 1. | 434 | always return 1. |