diff options
author | schwarze <> | 2023-08-31 17:27:41 +0000 |
---|---|---|
committer | schwarze <> | 2023-08-31 17:27:41 +0000 |
commit | 6adafa1ed9ad28e76b0a4bf339267f23a85c6bcf (patch) | |
tree | ab74fd16ac9e22d139215fe0e871eac001715264 /src/lib/libcrypto/man/Makefile | |
parent | 9939c389dea4955b2a84815d7c821f036c266e0f (diff) | |
download | openbsd-6adafa1ed9ad28e76b0a4bf339267f23a85c6bcf.tar.gz openbsd-6adafa1ed9ad28e76b0a4bf339267f23a85c6bcf.tar.bz2 openbsd-6adafa1ed9ad28e76b0a4bf339267f23a85c6bcf.zip |
Split three new manual pages EVP_CIPHER_nid(3), EVP_CIPHER_CTX_ctrl(3),
and EVP_CIPHER_CTX_set_flags(3) out of the excessively large and
unwieldy EVP_EncryptInit(3). This causes a number of inaccuracies
and gaps to stand out, but i'm not mixing text changes or content
additions into this split.
Using very useful feedback from tb@ regarding what belongs together
and how important the various functions are. I refrained from bothering
him with the complete patch, but he likes the general direction.
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/man/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/man/Makefile b/src/lib/libcrypto/man/Makefile index 4052638e0e..654a4f02a2 100644 --- a/src/lib/libcrypto/man/Makefile +++ b/src/lib/libcrypto/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.265 2023/08/30 00:58:57 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.266 2023/08/31 17:27:41 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | 4 | ||
@@ -164,9 +164,12 @@ MAN= \ | |||
164 | ESS_SIGNING_CERT_new.3 \ | 164 | ESS_SIGNING_CERT_new.3 \ |
165 | EVP_AEAD_CTX_init.3 \ | 165 | EVP_AEAD_CTX_init.3 \ |
166 | EVP_BytesToKey.3 \ | 166 | EVP_BytesToKey.3 \ |
167 | EVP_CIPHER_CTX_ctrl.3 \ | ||
167 | EVP_CIPHER_CTX_get_cipher_data.3 \ | 168 | EVP_CIPHER_CTX_get_cipher_data.3 \ |
169 | EVP_CIPHER_CTX_set_flags.3 \ | ||
168 | EVP_CIPHER_do_all.3 \ | 170 | EVP_CIPHER_do_all.3 \ |
169 | EVP_CIPHER_meth_new.3 \ | 171 | EVP_CIPHER_meth_new.3 \ |
172 | EVP_CIPHER_nid.3 \ | ||
170 | EVP_DigestInit.3 \ | 173 | EVP_DigestInit.3 \ |
171 | EVP_DigestSignInit.3 \ | 174 | EVP_DigestSignInit.3 \ |
172 | EVP_DigestVerifyInit.3 \ | 175 | EVP_DigestVerifyInit.3 \ |