Fri Oct 27 18:30:12 2023 UTC ()
openssl: Various install fixes and improvements.


(jperkin)
diff -r1.292 -r1.293 pkgsrc/security/openssl/Makefile
diff -r1.14 -r1.15 pkgsrc/security/openssl/PLIST
diff -r1.169 -r1.170 pkgsrc/security/openssl/distinfo
diff -r0 -r1.6 pkgsrc/security/openssl/patches/patch-Configurations_unix-Makefile.tmpl

cvs diff -r1.292 -r1.293 pkgsrc/security/openssl/Makefile (expand / switch to unified diff)

--- pkgsrc/security/openssl/Makefile 2023/10/24 21:30:35 1.292
+++ pkgsrc/security/openssl/Makefile 2023/10/27 18:30:12 1.293
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.292 2023/10/24 21:30:35 wiz Exp $ 1# $NetBSD: Makefile,v 1.293 2023/10/27 18:30:12 jperkin Exp $
2 2
3# Remember to upload-distfiles when updating OpenSSL -- otherwise it 3# Remember to upload-distfiles when updating OpenSSL -- otherwise it
4# is not possible for users who have bootstrapped without OpenSSL 4# is not possible for users who have bootstrapped without OpenSSL
5# to install it and enable HTTPS fetching. 5# to install it and enable HTTPS fetching.
6DISTNAME= openssl-3.1.4 6DISTNAME= openssl-3.1.4
7CATEGORIES= security 7CATEGORIES= security
8MASTER_SITES= https://www.openssl.org/source/ 8MASTER_SITES= https://www.openssl.org/source/
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= https://www.openssl.org/ 11HOMEPAGE= https://www.openssl.org/
12COMMENT= Secure Socket Layer and cryptographic library 12COMMENT= Secure Socket Layer and cryptographic library
13LICENSE= openssl 13LICENSE= openssl
14 14
@@ -31,27 +31,27 @@ MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMAND @@ -31,27 +31,27 @@ MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMAND
31.include "../../mk/bsd.prefs.mk" 31.include "../../mk/bsd.prefs.mk"
32 32
33.if ${MACHINE_PLATFORM:MDarwin-[0-8].*-powerpc} 33.if ${MACHINE_PLATFORM:MDarwin-[0-8].*-powerpc}
34# No {get,make,set}context support before Darwin 9 34# No {get,make,set}context support before Darwin 9
35CONFIGURE_ARGS+= no-async 35CONFIGURE_ARGS+= no-async
36.endif 36.endif
37 37
38PLIST_VARS+= devcrypto afalg 38PLIST_VARS+= devcrypto afalg
39# the AF_ALG engine is supported only on Linux, where it 39# the AF_ALG engine is supported only on Linux, where it
40# is used instead of the BSD /dev/crypto engine. 40# is used instead of the BSD /dev/crypto engine.
41.if ${OPSYS} == "Linux" 41.if ${OPSYS} == "Linux"
42PLIST.afalg= yes 42PLIST.afalg= yes
43.endif 43.endif
44.if exists(/dev/crypto) 44.if exists(/dev/crypto) && ${OPSYS} != "SunOS"
45PLIST.devcrypto= yes 45PLIST.devcrypto= yes
46.else 46.else
47CONFIGURE_ARGS+= no-devcryptoeng 47CONFIGURE_ARGS+= no-devcryptoeng
48.endif 48.endif
49 49
50# Fix 64-bit build on at least Mac OS X Snow Leopard 50# Fix 64-bit build on at least Mac OS X Snow Leopard
51.if ${OPSYS} == "Darwin" && ${MACHINE_ARCH} == "x86_64" 51.if ${OPSYS} == "Darwin" && ${MACHINE_ARCH} == "x86_64"
52CONFIGURE_ENV+= KERNEL_BITS=${ABI} 52CONFIGURE_ENV+= KERNEL_BITS=${ABI}
53.endif 53.endif
54 54
55.if ${USE_CROSS_COMPILE:tl} == "yes" 55.if ${USE_CROSS_COMPILE:tl} == "yes"
56 56
57OPENSSL_ARCH.aarch64= arm64 57OPENSSL_ARCH.aarch64= arm64
@@ -126,20 +126,20 @@ PRINT_PLIST_AWK+= /^lib\/engines/ { gsub @@ -126,20 +126,20 @@ PRINT_PLIST_AWK+= /^lib\/engines/ { gsub
126# See https://github.com/openssl/openssl/issues/11060. 126# See https://github.com/openssl/openssl/issues/11060.
127do-configure: 127do-configure:
128 ${RUN} cd ${WRKSRC} && ${SETENV} ${_CONFIGURE_SCRIPT_ENV:NCC=*} \ 128 ${RUN} cd ${WRKSRC} && ${SETENV} ${_CONFIGURE_SCRIPT_ENV:NCC=*} \
129 ${CONFIG_SHELL} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS} 129 ${CONFIG_SHELL} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
130 130
131# 131#
132# Get rid of ridiculous namespace collisions like passwd.1 and just leave the 132# Get rid of ridiculous namespace collisions like passwd.1 and just leave the
133# openssl-*.1 style variants. On a more practical note this avoids creating 133# openssl-*.1 style variants. On a more practical note this avoids creating
134# a conflict with moreutils (ts.1). 134# a conflict with moreutils (ts.1).
135# 135#
136post-install: 136post-install:
137 cd ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \ 137 cd ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
138 for f in openssl-*; do \ 138 for f in openssl-*; do \
139 ${RM} -f $${f}; \ 139 ${RM} -f `${ECHO} $${f} | ${SED} -e 's/openssl-//'`; \
140 ${MV} `${ECHO} $${f} | ${SED} -e 's/openssl-//'` $${f}; \ 
141 done 140 done
142 ${MV} ${DESTDIR}${PREFIX}/etc/openssl/* ${DESTDIR}${PREFIX}/share/examples/openssl 141 ${MV} ${DESTDIR}${PKG_SYSCONFDIR}/* \
 142 ${DESTDIR}${PREFIX}/share/examples/openssl
143 143
144.include "../../mk/dlopen.buildlink3.mk" 144.include "../../mk/dlopen.buildlink3.mk"
145.include "../../mk/bsd.pkg.mk" 145.include "../../mk/bsd.pkg.mk"

cvs diff -r1.14 -r1.15 pkgsrc/security/openssl/PLIST (expand / switch to unified diff)

--- pkgsrc/security/openssl/PLIST 2023/10/24 21:30:35 1.14
+++ pkgsrc/security/openssl/PLIST 2023/10/27 18:30:12 1.15
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.14 2023/10/24 21:30:35 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.15 2023/10/27 18:30:12 jperkin Exp $
2bin/c_rehash 2bin/c_rehash
3bin/openssl 3bin/openssl
4include/openssl/aes.h 4include/openssl/aes.h
5include/openssl/asn1.h 5include/openssl/asn1.h
6include/openssl/asn1_mac.h 6include/openssl/asn1_mac.h
7include/openssl/asn1err.h 7include/openssl/asn1err.h
8include/openssl/asn1t.h 8include/openssl/asn1t.h
9include/openssl/async.h 9include/openssl/async.h
10include/openssl/asyncerr.h 10include/openssl/asyncerr.h
11include/openssl/bio.h 11include/openssl/bio.h
12include/openssl/bioerr.h 12include/openssl/bioerr.h
13include/openssl/blowfish.h 13include/openssl/blowfish.h
14include/openssl/bn.h 14include/openssl/bn.h
@@ -146,70 +146,77 @@ lib/libcrypto.so @@ -146,70 +146,77 @@ lib/libcrypto.so
146lib/libcrypto.so.3 146lib/libcrypto.so.3
147lib/libssl.a 147lib/libssl.a
148lib/libssl.so 148lib/libssl.so
149lib/libssl.so.3 149lib/libssl.so.3
150lib/ossl-modules/legacy.${SOEXT} 150lib/ossl-modules/legacy.${SOEXT}
151lib/pkgconfig/libcrypto.pc 151lib/pkgconfig/libcrypto.pc
152lib/pkgconfig/libssl.pc 152lib/pkgconfig/libssl.pc
153lib/pkgconfig/openssl.pc 153lib/pkgconfig/openssl.pc
154man/man1/CA.pl.1 154man/man1/CA.pl.1
155man/man1/c_rehash.1 155man/man1/c_rehash.1
156man/man1/openssl-asn1parse.1 156man/man1/openssl-asn1parse.1
157man/man1/openssl-ca.1 157man/man1/openssl-ca.1
158man/man1/openssl-ciphers.1 158man/man1/openssl-ciphers.1
 159man/man1/openssl-cmds.1
159man/man1/openssl-cmp.1 160man/man1/openssl-cmp.1
160man/man1/openssl-cms.1 161man/man1/openssl-cms.1
161man/man1/openssl-crl.1 162man/man1/openssl-crl.1
162man/man1/openssl-crl2pkcs7.1 163man/man1/openssl-crl2pkcs7.1
163man/man1/openssl-dgst.1 164man/man1/openssl-dgst.1
164man/man1/openssl-dhparam.1 165man/man1/openssl-dhparam.1
165man/man1/openssl-dsa.1 166man/man1/openssl-dsa.1
166man/man1/openssl-dsaparam.1 167man/man1/openssl-dsaparam.1
167man/man1/openssl-ec.1 168man/man1/openssl-ec.1
168man/man1/openssl-ecparam.1 169man/man1/openssl-ecparam.1
169man/man1/openssl-enc.1 170man/man1/openssl-enc.1
170man/man1/openssl-engine.1 171man/man1/openssl-engine.1
171man/man1/openssl-errstr.1 172man/man1/openssl-errstr.1
 173man/man1/openssl-fipsinstall.1
 174man/man1/openssl-format-options.1
172man/man1/openssl-gendsa.1 175man/man1/openssl-gendsa.1
173man/man1/openssl-genpkey.1 176man/man1/openssl-genpkey.1
174man/man1/openssl-genrsa.1 177man/man1/openssl-genrsa.1
175man/man1/openssl-info.1 178man/man1/openssl-info.1
176man/man1/openssl-kdf.1 179man/man1/openssl-kdf.1
 180man/man1/openssl-list.1
177man/man1/openssl-mac.1 181man/man1/openssl-mac.1
 182man/man1/openssl-namedisplay-options.1
178man/man1/openssl-nseq.1 183man/man1/openssl-nseq.1
179man/man1/openssl-ocsp.1 184man/man1/openssl-ocsp.1
 185man/man1/openssl-passphrase-options.1
180man/man1/openssl-passwd.1 186man/man1/openssl-passwd.1
181man/man1/openssl-pkcs12.1 187man/man1/openssl-pkcs12.1
182man/man1/openssl-pkcs7.1 188man/man1/openssl-pkcs7.1
183man/man1/openssl-pkcs8.1 189man/man1/openssl-pkcs8.1
184man/man1/openssl-pkey.1 190man/man1/openssl-pkey.1
185man/man1/openssl-pkeyparam.1 191man/man1/openssl-pkeyparam.1
186man/man1/openssl-pkeyutl.1 192man/man1/openssl-pkeyutl.1
187man/man1/openssl-prime.1 193man/man1/openssl-prime.1
188man/man1/openssl-rand.1 194man/man1/openssl-rand.1
189man/man1/openssl-rehash.1 195man/man1/openssl-rehash.1
190man/man1/openssl-req.1 196man/man1/openssl-req.1
191man/man1/openssl-rsa.1 197man/man1/openssl-rsa.1
192man/man1/openssl-rsautl.1 198man/man1/openssl-rsautl.1
193man/man1/openssl-s_client.1 199man/man1/openssl-s_client.1
194man/man1/openssl-s_server.1 200man/man1/openssl-s_server.1
195man/man1/openssl-s_time.1 201man/man1/openssl-s_time.1
196man/man1/openssl-sess_id.1 202man/man1/openssl-sess_id.1
197man/man1/openssl-smime.1 203man/man1/openssl-smime.1
198man/man1/openssl-speed.1 204man/man1/openssl-speed.1
199man/man1/openssl-spkac.1 205man/man1/openssl-spkac.1
200man/man1/openssl-srp.1 206man/man1/openssl-srp.1
201man/man1/openssl-storeutl.1 207man/man1/openssl-storeutl.1
202man/man1/openssl-ts.1 208man/man1/openssl-ts.1
 209man/man1/openssl-verification-options.1
203man/man1/openssl-verify.1 210man/man1/openssl-verify.1
204man/man1/openssl-version.1 211man/man1/openssl-version.1
205man/man1/openssl-x509.1 212man/man1/openssl-x509.1
206man/man1/openssl.1 213man/man1/openssl.1
207man/man1/tsget.1 214man/man1/tsget.1
208man/man3/ACCESS_DESCRIPTION_free.3 215man/man3/ACCESS_DESCRIPTION_free.3
209man/man3/ACCESS_DESCRIPTION_new.3 216man/man3/ACCESS_DESCRIPTION_new.3
210man/man3/ADMISSIONS.3 217man/man3/ADMISSIONS.3
211man/man3/ADMISSIONS_free.3 218man/man3/ADMISSIONS_free.3
212man/man3/ADMISSIONS_get0_admissionAuthority.3 219man/man3/ADMISSIONS_get0_admissionAuthority.3
213man/man3/ADMISSIONS_get0_namingAuthority.3 220man/man3/ADMISSIONS_get0_namingAuthority.3
214man/man3/ADMISSIONS_get0_professionInfos.3 221man/man3/ADMISSIONS_get0_professionInfos.3
215man/man3/ADMISSIONS_new.3 222man/man3/ADMISSIONS_new.3
@@ -5626,818 +5633,20 @@ man/man7/provider-encoder.7 @@ -5626,818 +5633,20 @@ man/man7/provider-encoder.7
5626man/man7/provider-kdf.7 5633man/man7/provider-kdf.7
5627man/man7/provider-kem.7 5634man/man7/provider-kem.7
5628man/man7/provider-keyexch.7 5635man/man7/provider-keyexch.7
5629man/man7/provider-keymgmt.7 5636man/man7/provider-keymgmt.7
5630man/man7/provider-mac.7 5637man/man7/provider-mac.7
5631man/man7/provider-object.7 5638man/man7/provider-object.7
5632man/man7/provider-rand.7 5639man/man7/provider-rand.7
5633man/man7/provider-signature.7 5640man/man7/provider-signature.7
5634man/man7/provider-storemgmt.7 5641man/man7/provider-storemgmt.7
5635man/man7/provider.7 5642man/man7/provider.7
5636man/man7/proxy-certificates.7 5643man/man7/proxy-certificates.7
5637man/man7/ssl.7 5644man/man7/ssl.7
5638man/man7/x509.7 5645man/man7/x509.7
5639share/doc/openssl/html/man1/CA.pl.html 
5640share/doc/openssl/html/man1/openssl-asn1parse.html 
5641share/doc/openssl/html/man1/openssl-ca.html 
5642share/doc/openssl/html/man1/openssl-ciphers.html 
5643share/doc/openssl/html/man1/openssl-cmds.html 
5644share/doc/openssl/html/man1/openssl-cmp.html 
5645share/doc/openssl/html/man1/openssl-cms.html 
5646share/doc/openssl/html/man1/openssl-crl.html 
5647share/doc/openssl/html/man1/openssl-crl2pkcs7.html 
5648share/doc/openssl/html/man1/openssl-dgst.html 
5649share/doc/openssl/html/man1/openssl-dhparam.html 
5650share/doc/openssl/html/man1/openssl-dsa.html 
5651share/doc/openssl/html/man1/openssl-dsaparam.html 
5652share/doc/openssl/html/man1/openssl-ec.html 
5653share/doc/openssl/html/man1/openssl-ecparam.html 
5654share/doc/openssl/html/man1/openssl-enc.html 
5655share/doc/openssl/html/man1/openssl-engine.html 
5656share/doc/openssl/html/man1/openssl-errstr.html 
5657share/doc/openssl/html/man1/openssl-fipsinstall.html 
5658share/doc/openssl/html/man1/openssl-format-options.html 
5659share/doc/openssl/html/man1/openssl-gendsa.html 
5660share/doc/openssl/html/man1/openssl-genpkey.html 
5661share/doc/openssl/html/man1/openssl-genrsa.html 
5662share/doc/openssl/html/man1/openssl-info.html 
5663share/doc/openssl/html/man1/openssl-kdf.html 
5664share/doc/openssl/html/man1/openssl-list.html 
5665share/doc/openssl/html/man1/openssl-mac.html 
5666share/doc/openssl/html/man1/openssl-namedisplay-options.html 
5667share/doc/openssl/html/man1/openssl-nseq.html 
5668share/doc/openssl/html/man1/openssl-ocsp.html 
5669share/doc/openssl/html/man1/openssl-passphrase-options.html 
5670share/doc/openssl/html/man1/openssl-passwd.html 
5671share/doc/openssl/html/man1/openssl-pkcs12.html 
5672share/doc/openssl/html/man1/openssl-pkcs7.html 
5673share/doc/openssl/html/man1/openssl-pkcs8.html 
5674share/doc/openssl/html/man1/openssl-pkey.html 
5675share/doc/openssl/html/man1/openssl-pkeyparam.html 
5676share/doc/openssl/html/man1/openssl-pkeyutl.html 
5677share/doc/openssl/html/man1/openssl-prime.html 
5678share/doc/openssl/html/man1/openssl-rand.html 
5679share/doc/openssl/html/man1/openssl-rehash.html 
5680share/doc/openssl/html/man1/openssl-req.html 
5681share/doc/openssl/html/man1/openssl-rsa.html 
5682share/doc/openssl/html/man1/openssl-rsautl.html 
5683share/doc/openssl/html/man1/openssl-s_client.html 
5684share/doc/openssl/html/man1/openssl-s_server.html 
5685share/doc/openssl/html/man1/openssl-s_time.html 
5686share/doc/openssl/html/man1/openssl-sess_id.html 
5687share/doc/openssl/html/man1/openssl-smime.html 
5688share/doc/openssl/html/man1/openssl-speed.html 
5689share/doc/openssl/html/man1/openssl-spkac.html 
5690share/doc/openssl/html/man1/openssl-srp.html 
5691share/doc/openssl/html/man1/openssl-storeutl.html 
5692share/doc/openssl/html/man1/openssl-ts.html 
5693share/doc/openssl/html/man1/openssl-verification-options.html 
5694share/doc/openssl/html/man1/openssl-verify.html 
5695share/doc/openssl/html/man1/openssl-version.html 
5696share/doc/openssl/html/man1/openssl-x509.html 
5697share/doc/openssl/html/man1/openssl.html 
5698share/doc/openssl/html/man1/tsget.html 
5699share/doc/openssl/html/man3/ADMISSIONS.html 
5700share/doc/openssl/html/man3/ASN1_EXTERN_FUNCS.html 
5701share/doc/openssl/html/man3/ASN1_INTEGER_get_int64.html 
5702share/doc/openssl/html/man3/ASN1_INTEGER_new.html 
5703share/doc/openssl/html/man3/ASN1_ITEM_lookup.html 
5704share/doc/openssl/html/man3/ASN1_OBJECT_new.html 
5705share/doc/openssl/html/man3/ASN1_STRING_TABLE_add.html 
5706share/doc/openssl/html/man3/ASN1_STRING_length.html 
5707share/doc/openssl/html/man3/ASN1_STRING_new.html 
5708share/doc/openssl/html/man3/ASN1_STRING_print_ex.html 
5709share/doc/openssl/html/man3/ASN1_TIME_set.html 
5710share/doc/openssl/html/man3/ASN1_TYPE_get.html 
5711share/doc/openssl/html/man3/ASN1_aux_cb.html 
5712share/doc/openssl/html/man3/ASN1_generate_nconf.html 
5713share/doc/openssl/html/man3/ASN1_item_d2i_bio.html 
5714share/doc/openssl/html/man3/ASN1_item_new.html 
5715share/doc/openssl/html/man3/ASN1_item_sign.html 
5716share/doc/openssl/html/man3/ASYNC_WAIT_CTX_new.html 
5717share/doc/openssl/html/man3/ASYNC_start_job.html 
5718share/doc/openssl/html/man3/BF_encrypt.html 
5719share/doc/openssl/html/man3/BIO_ADDR.html 
5720share/doc/openssl/html/man3/BIO_ADDRINFO.html 
5721share/doc/openssl/html/man3/BIO_connect.html 
5722share/doc/openssl/html/man3/BIO_ctrl.html 
5723share/doc/openssl/html/man3/BIO_f_base64.html 
5724share/doc/openssl/html/man3/BIO_f_buffer.html 
5725share/doc/openssl/html/man3/BIO_f_cipher.html 
5726share/doc/openssl/html/man3/BIO_f_md.html 
5727share/doc/openssl/html/man3/BIO_f_null.html 
5728share/doc/openssl/html/man3/BIO_f_prefix.html 
5729share/doc/openssl/html/man3/BIO_f_readbuffer.html 
5730share/doc/openssl/html/man3/BIO_f_ssl.html 
5731share/doc/openssl/html/man3/BIO_find_type.html 
5732share/doc/openssl/html/man3/BIO_get_data.html 
5733share/doc/openssl/html/man3/BIO_get_ex_new_index.html 
5734share/doc/openssl/html/man3/BIO_meth_new.html 
5735share/doc/openssl/html/man3/BIO_new.html 
5736share/doc/openssl/html/man3/BIO_new_CMS.html 
5737share/doc/openssl/html/man3/BIO_parse_hostserv.html 
5738share/doc/openssl/html/man3/BIO_printf.html 
5739share/doc/openssl/html/man3/BIO_push.html 
5740share/doc/openssl/html/man3/BIO_read.html 
5741share/doc/openssl/html/man3/BIO_s_accept.html 
5742share/doc/openssl/html/man3/BIO_s_bio.html 
5743share/doc/openssl/html/man3/BIO_s_connect.html 
5744share/doc/openssl/html/man3/BIO_s_core.html 
5745share/doc/openssl/html/man3/BIO_s_datagram.html 
5746share/doc/openssl/html/man3/BIO_s_fd.html 
5747share/doc/openssl/html/man3/BIO_s_file.html 
5748share/doc/openssl/html/man3/BIO_s_mem.html 
5749share/doc/openssl/html/man3/BIO_s_null.html 
5750share/doc/openssl/html/man3/BIO_s_socket.html 
5751share/doc/openssl/html/man3/BIO_set_callback.html 
5752share/doc/openssl/html/man3/BIO_should_retry.html 
5753share/doc/openssl/html/man3/BIO_socket_wait.html 
5754share/doc/openssl/html/man3/BN_BLINDING_new.html 
5755share/doc/openssl/html/man3/BN_CTX_new.html 
5756share/doc/openssl/html/man3/BN_CTX_start.html 
5757share/doc/openssl/html/man3/BN_add.html 
5758share/doc/openssl/html/man3/BN_add_word.html 
5759share/doc/openssl/html/man3/BN_bn2bin.html 
5760share/doc/openssl/html/man3/BN_cmp.html 
5761share/doc/openssl/html/man3/BN_copy.html 
5762share/doc/openssl/html/man3/BN_generate_prime.html 
5763share/doc/openssl/html/man3/BN_mod_exp_mont.html 
5764share/doc/openssl/html/man3/BN_mod_inverse.html 
5765share/doc/openssl/html/man3/BN_mod_mul_montgomery.html 
5766share/doc/openssl/html/man3/BN_mod_mul_reciprocal.html 
5767share/doc/openssl/html/man3/BN_new.html 
5768share/doc/openssl/html/man3/BN_num_bytes.html 
5769share/doc/openssl/html/man3/BN_rand.html 
5770share/doc/openssl/html/man3/BN_security_bits.html 
5771share/doc/openssl/html/man3/BN_set_bit.html 
5772share/doc/openssl/html/man3/BN_swap.html 
5773share/doc/openssl/html/man3/BN_zero.html 
5774share/doc/openssl/html/man3/BUF_MEM_new.html 
5775share/doc/openssl/html/man3/CMS_EncryptedData_decrypt.html 
5776share/doc/openssl/html/man3/CMS_EncryptedData_encrypt.html 
5777share/doc/openssl/html/man3/CMS_EnvelopedData_create.html 
5778share/doc/openssl/html/man3/CMS_add0_cert.html 
5779share/doc/openssl/html/man3/CMS_add1_recipient_cert.html 
5780share/doc/openssl/html/man3/CMS_add1_signer.html 
5781share/doc/openssl/html/man3/CMS_compress.html 
5782share/doc/openssl/html/man3/CMS_data_create.html 
5783share/doc/openssl/html/man3/CMS_decrypt.html 
5784share/doc/openssl/html/man3/CMS_digest_create.html 
5785share/doc/openssl/html/man3/CMS_encrypt.html 
5786share/doc/openssl/html/man3/CMS_final.html 
5787share/doc/openssl/html/man3/CMS_get0_RecipientInfos.html 
5788share/doc/openssl/html/man3/CMS_get0_SignerInfos.html 
5789share/doc/openssl/html/man3/CMS_get0_type.html 
5790share/doc/openssl/html/man3/CMS_get1_ReceiptRequest.html 
5791share/doc/openssl/html/man3/CMS_sign.html 
5792share/doc/openssl/html/man3/CMS_sign_receipt.html 
5793share/doc/openssl/html/man3/CMS_uncompress.html 
5794share/doc/openssl/html/man3/CMS_verify.html 
5795share/doc/openssl/html/man3/CMS_verify_receipt.html 
5796share/doc/openssl/html/man3/CONF_modules_free.html 
5797share/doc/openssl/html/man3/CONF_modules_load_file.html 
5798share/doc/openssl/html/man3/CRYPTO_THREAD_run_once.html 
5799share/doc/openssl/html/man3/CRYPTO_get_ex_new_index.html 
5800share/doc/openssl/html/man3/CRYPTO_memcmp.html 
5801share/doc/openssl/html/man3/CTLOG_STORE_get0_log_by_id.html 
5802share/doc/openssl/html/man3/CTLOG_STORE_new.html 
5803share/doc/openssl/html/man3/CTLOG_new.html 
5804share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_new.html 
5805share/doc/openssl/html/man3/DEFINE_STACK_OF.html 
5806share/doc/openssl/html/man3/DES_random_key.html 
5807share/doc/openssl/html/man3/DH_generate_key.html 
5808share/doc/openssl/html/man3/DH_generate_parameters.html 
5809share/doc/openssl/html/man3/DH_get0_pqg.html 
5810share/doc/openssl/html/man3/DH_get_1024_160.html 
5811share/doc/openssl/html/man3/DH_meth_new.html 
5812share/doc/openssl/html/man3/DH_new.html 
5813share/doc/openssl/html/man3/DH_new_by_nid.html 
5814share/doc/openssl/html/man3/DH_set_method.html 
5815share/doc/openssl/html/man3/DH_size.html 
5816share/doc/openssl/html/man3/DSA_SIG_new.html 
5817share/doc/openssl/html/man3/DSA_do_sign.html 
5818share/doc/openssl/html/man3/DSA_dup_DH.html 
5819share/doc/openssl/html/man3/DSA_generate_key.html 
5820share/doc/openssl/html/man3/DSA_generate_parameters.html 
5821share/doc/openssl/html/man3/DSA_get0_pqg.html 
5822share/doc/openssl/html/man3/DSA_meth_new.html 
5823share/doc/openssl/html/man3/DSA_new.html 
5824share/doc/openssl/html/man3/DSA_set_method.html 
5825share/doc/openssl/html/man3/DSA_sign.html 
5826share/doc/openssl/html/man3/DSA_size.html 
5827share/doc/openssl/html/man3/DTLS_get_data_mtu.html 
5828share/doc/openssl/html/man3/DTLS_set_timer_cb.html 
5829share/doc/openssl/html/man3/DTLSv1_listen.html 
5830share/doc/openssl/html/man3/ECDSA_SIG_new.html 
5831share/doc/openssl/html/man3/ECDSA_sign.html 
5832share/doc/openssl/html/man3/ECPKParameters_print.html 
5833share/doc/openssl/html/man3/EC_GFp_simple_method.html 
5834share/doc/openssl/html/man3/EC_GROUP_copy.html 
5835share/doc/openssl/html/man3/EC_GROUP_new.html 
5836share/doc/openssl/html/man3/EC_KEY_get_enc_flags.html 
5837share/doc/openssl/html/man3/EC_KEY_new.html 
5838share/doc/openssl/html/man3/EC_POINT_add.html 
5839share/doc/openssl/html/man3/EC_POINT_new.html 
5840share/doc/openssl/html/man3/ENGINE_add.html 
5841share/doc/openssl/html/man3/ERR_GET_LIB.html 
5842share/doc/openssl/html/man3/ERR_clear_error.html 
5843share/doc/openssl/html/man3/ERR_error_string.html 
5844share/doc/openssl/html/man3/ERR_get_error.html 
5845share/doc/openssl/html/man3/ERR_load_crypto_strings.html 
5846share/doc/openssl/html/man3/ERR_load_strings.html 
5847share/doc/openssl/html/man3/ERR_new.html 
5848share/doc/openssl/html/man3/ERR_print_errors.html 
5849share/doc/openssl/html/man3/ERR_put_error.html 
5850share/doc/openssl/html/man3/ERR_remove_state.html 
5851share/doc/openssl/html/man3/ERR_set_mark.html 
5852share/doc/openssl/html/man3/EVP_ASYM_CIPHER_free.html 
5853share/doc/openssl/html/man3/EVP_BytesToKey.html 
5854share/doc/openssl/html/man3/EVP_CIPHER_CTX_get_cipher_data.html 
5855share/doc/openssl/html/man3/EVP_CIPHER_CTX_get_original_iv.html 
5856share/doc/openssl/html/man3/EVP_CIPHER_meth_new.html 
5857share/doc/openssl/html/man3/EVP_DigestInit.html 
5858share/doc/openssl/html/man3/EVP_DigestSignInit.html 
5859share/doc/openssl/html/man3/EVP_DigestVerifyInit.html 
5860share/doc/openssl/html/man3/EVP_EncodeInit.html 
5861share/doc/openssl/html/man3/EVP_EncryptInit.html 
5862share/doc/openssl/html/man3/EVP_KDF.html 
5863share/doc/openssl/html/man3/EVP_KEM_free.html 
5864share/doc/openssl/html/man3/EVP_KEYEXCH_free.html 
5865share/doc/openssl/html/man3/EVP_KEYMGMT.html 
5866share/doc/openssl/html/man3/EVP_MAC.html 
5867share/doc/openssl/html/man3/EVP_MD_meth_new.html 
5868share/doc/openssl/html/man3/EVP_OpenInit.html 
5869share/doc/openssl/html/man3/EVP_PBE_CipherInit.html 
5870share/doc/openssl/html/man3/EVP_PKEY2PKCS8.html 
5871share/doc/openssl/html/man3/EVP_PKEY_ASN1_METHOD.html 
5872share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl.html 
5873share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_libctx.html 
5874share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_pkey.html 
5875share/doc/openssl/html/man3/EVP_PKEY_CTX_new.html 
5876share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_pbe_pass.html 
5877share/doc/openssl/html/man3/EVP_PKEY_CTX_set_hkdf_md.html 
5878share/doc/openssl/html/man3/EVP_PKEY_CTX_set_params.html 
5879share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_md.html 
5880share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_N.html 
5881share/doc/openssl/html/man3/EVP_PKEY_CTX_set_tls1_prf_md.html 
5882share/doc/openssl/html/man3/EVP_PKEY_asn1_get_count.html 
5883share/doc/openssl/html/man3/EVP_PKEY_check.html 
5884share/doc/openssl/html/man3/EVP_PKEY_copy_parameters.html 
5885share/doc/openssl/html/man3/EVP_PKEY_decapsulate.html 
5886share/doc/openssl/html/man3/EVP_PKEY_decrypt.html 
5887share/doc/openssl/html/man3/EVP_PKEY_derive.html 
5888share/doc/openssl/html/man3/EVP_PKEY_digestsign_supports_digest.html 
5889share/doc/openssl/html/man3/EVP_PKEY_encapsulate.html 
5890share/doc/openssl/html/man3/EVP_PKEY_encrypt.html 
5891share/doc/openssl/html/man3/EVP_PKEY_fromdata.html 
5892share/doc/openssl/html/man3/EVP_PKEY_get_default_digest_nid.html 
5893share/doc/openssl/html/man3/EVP_PKEY_get_field_type.html 
5894share/doc/openssl/html/man3/EVP_PKEY_get_group_name.html 
5895share/doc/openssl/html/man3/EVP_PKEY_get_size.html 
5896share/doc/openssl/html/man3/EVP_PKEY_gettable_params.html 
5897share/doc/openssl/html/man3/EVP_PKEY_is_a.html 
5898share/doc/openssl/html/man3/EVP_PKEY_keygen.html 
5899share/doc/openssl/html/man3/EVP_PKEY_meth_get_count.html 
5900share/doc/openssl/html/man3/EVP_PKEY_meth_new.html 
5901share/doc/openssl/html/man3/EVP_PKEY_new.html 
5902share/doc/openssl/html/man3/EVP_PKEY_print_private.html 
5903share/doc/openssl/html/man3/EVP_PKEY_set1_RSA.html 
5904share/doc/openssl/html/man3/EVP_PKEY_set1_encoded_public_key.html 
5905share/doc/openssl/html/man3/EVP_PKEY_set_type.html 
5906share/doc/openssl/html/man3/EVP_PKEY_settable_params.html 
5907share/doc/openssl/html/man3/EVP_PKEY_sign.html 
5908share/doc/openssl/html/man3/EVP_PKEY_todata.html 
5909share/doc/openssl/html/man3/EVP_PKEY_verify.html 
5910share/doc/openssl/html/man3/EVP_PKEY_verify_recover.html 
5911share/doc/openssl/html/man3/EVP_RAND.html 
5912share/doc/openssl/html/man3/EVP_SIGNATURE.html 
5913share/doc/openssl/html/man3/EVP_SealInit.html 
5914share/doc/openssl/html/man3/EVP_SignInit.html 
5915share/doc/openssl/html/man3/EVP_VerifyInit.html 
5916share/doc/openssl/html/man3/EVP_aes_128_gcm.html 
5917share/doc/openssl/html/man3/EVP_aria_128_gcm.html 
5918share/doc/openssl/html/man3/EVP_bf_cbc.html 
5919share/doc/openssl/html/man3/EVP_blake2b512.html 
5920share/doc/openssl/html/man3/EVP_camellia_128_ecb.html 
5921share/doc/openssl/html/man3/EVP_cast5_cbc.html 
5922share/doc/openssl/html/man3/EVP_chacha20.html 
5923share/doc/openssl/html/man3/EVP_des_cbc.html 
5924share/doc/openssl/html/man3/EVP_desx_cbc.html 
5925share/doc/openssl/html/man3/EVP_idea_cbc.html 
5926share/doc/openssl/html/man3/EVP_md2.html 
5927share/doc/openssl/html/man3/EVP_md4.html 
5928share/doc/openssl/html/man3/EVP_md5.html 
5929share/doc/openssl/html/man3/EVP_mdc2.html 
5930share/doc/openssl/html/man3/EVP_rc2_cbc.html 
5931share/doc/openssl/html/man3/EVP_rc4.html 
5932share/doc/openssl/html/man3/EVP_rc5_32_12_16_cbc.html 
5933share/doc/openssl/html/man3/EVP_ripemd160.html 
5934share/doc/openssl/html/man3/EVP_seed_cbc.html 
5935share/doc/openssl/html/man3/EVP_set_default_properties.html 
5936share/doc/openssl/html/man3/EVP_sha1.html 
5937share/doc/openssl/html/man3/EVP_sha224.html 
5938share/doc/openssl/html/man3/EVP_sha3_224.html 
5939share/doc/openssl/html/man3/EVP_sm3.html 
5940share/doc/openssl/html/man3/EVP_sm4_cbc.html 
5941share/doc/openssl/html/man3/EVP_whirlpool.html 
5942share/doc/openssl/html/man3/HMAC.html 
5943share/doc/openssl/html/man3/MD5.html 
5944share/doc/openssl/html/man3/MDC2_Init.html 
5945share/doc/openssl/html/man3/NCONF_new_ex.html 
5946share/doc/openssl/html/man3/OBJ_nid2obj.html 
5947share/doc/openssl/html/man3/OCSP_REQUEST_new.html 
5948share/doc/openssl/html/man3/OCSP_cert_to_id.html 
5949share/doc/openssl/html/man3/OCSP_request_add1_nonce.html 
5950share/doc/openssl/html/man3/OCSP_resp_find_status.html 
5951share/doc/openssl/html/man3/OCSP_response_status.html 
5952share/doc/openssl/html/man3/OCSP_sendreq_new.html 
5953share/doc/openssl/html/man3/OPENSSL_Applink.html 
5954share/doc/openssl/html/man3/OPENSSL_FILE.html 
5955share/doc/openssl/html/man3/OPENSSL_LH_COMPFUNC.html 
5956share/doc/openssl/html/man3/OPENSSL_LH_stats.html 
5957share/doc/openssl/html/man3/OPENSSL_config.html 
5958share/doc/openssl/html/man3/OPENSSL_fork_prepare.html 
5959share/doc/openssl/html/man3/OPENSSL_gmtime.html 
5960share/doc/openssl/html/man3/OPENSSL_hexchar2int.html 
5961share/doc/openssl/html/man3/OPENSSL_ia32cap.html 
5962share/doc/openssl/html/man3/OPENSSL_init_crypto.html 
5963share/doc/openssl/html/man3/OPENSSL_init_ssl.html 
5964share/doc/openssl/html/man3/OPENSSL_instrument_bus.html 
5965share/doc/openssl/html/man3/OPENSSL_load_builtin_modules.html 
5966share/doc/openssl/html/man3/OPENSSL_malloc.html 
5967share/doc/openssl/html/man3/OPENSSL_s390xcap.html 
5968share/doc/openssl/html/man3/OPENSSL_secure_malloc.html 
5969share/doc/openssl/html/man3/OPENSSL_strcasecmp.html 
5970share/doc/openssl/html/man3/OSSL_ALGORITHM.html 
5971share/doc/openssl/html/man3/OSSL_CALLBACK.html 
5972share/doc/openssl/html/man3/OSSL_CMP_CTX_new.html 
5973share/doc/openssl/html/man3/OSSL_CMP_HDR_get0_transactionID.html 
5974share/doc/openssl/html/man3/OSSL_CMP_ITAV_set0.html 
5975share/doc/openssl/html/man3/OSSL_CMP_MSG_get0_header.html 
5976share/doc/openssl/html/man3/OSSL_CMP_MSG_http_perform.html 
5977share/doc/openssl/html/man3/OSSL_CMP_SRV_CTX_new.html 
5978share/doc/openssl/html/man3/OSSL_CMP_STATUSINFO_new.html 
5979share/doc/openssl/html/man3/OSSL_CMP_exec_certreq.html 
5980share/doc/openssl/html/man3/OSSL_CMP_log_open.html 
5981share/doc/openssl/html/man3/OSSL_CMP_validate_msg.html 
5982share/doc/openssl/html/man3/OSSL_CORE_MAKE_FUNC.html 
5983share/doc/openssl/html/man3/OSSL_CRMF_MSG_get0_tmpl.html 
5984share/doc/openssl/html/man3/OSSL_CRMF_MSG_set0_validity.html 
5985share/doc/openssl/html/man3/OSSL_CRMF_MSG_set1_regCtrl_regToken.html 
5986share/doc/openssl/html/man3/OSSL_CRMF_MSG_set1_regInfo_certReq.html 
5987share/doc/openssl/html/man3/OSSL_CRMF_pbmp_new.html 
5988share/doc/openssl/html/man3/OSSL_DECODER.html 
5989share/doc/openssl/html/man3/OSSL_DECODER_CTX.html 
5990share/doc/openssl/html/man3/OSSL_DECODER_CTX_new_for_pkey.html 
5991share/doc/openssl/html/man3/OSSL_DECODER_from_bio.html 
5992share/doc/openssl/html/man3/OSSL_DISPATCH.html 
5993share/doc/openssl/html/man3/OSSL_ENCODER.html 
5994share/doc/openssl/html/man3/OSSL_ENCODER_CTX.html 
5995share/doc/openssl/html/man3/OSSL_ENCODER_CTX_new_for_pkey.html 
5996share/doc/openssl/html/man3/OSSL_ENCODER_to_bio.html 
5997share/doc/openssl/html/man3/OSSL_ESS_check_signing_certs.html 
5998share/doc/openssl/html/man3/OSSL_HTTP_REQ_CTX.html 
5999share/doc/openssl/html/man3/OSSL_HTTP_parse_url.html 
6000share/doc/openssl/html/man3/OSSL_HTTP_transfer.html 
6001share/doc/openssl/html/man3/OSSL_ITEM.html 
6002share/doc/openssl/html/man3/OSSL_LIB_CTX.html 
6003share/doc/openssl/html/man3/OSSL_PARAM.html 
6004share/doc/openssl/html/man3/OSSL_PARAM_BLD.html 
6005share/doc/openssl/html/man3/OSSL_PARAM_allocate_from_text.html 
6006share/doc/openssl/html/man3/OSSL_PARAM_dup.html 
6007share/doc/openssl/html/man3/OSSL_PARAM_int.html 
6008share/doc/openssl/html/man3/OSSL_PROVIDER.html 
6009share/doc/openssl/html/man3/OSSL_SELF_TEST_new.html 
6010share/doc/openssl/html/man3/OSSL_SELF_TEST_set_callback.html 
6011share/doc/openssl/html/man3/OSSL_STORE_INFO.html 
6012share/doc/openssl/html/man3/OSSL_STORE_LOADER.html 
6013share/doc/openssl/html/man3/OSSL_STORE_SEARCH.html 
6014share/doc/openssl/html/man3/OSSL_STORE_attach.html 
6015share/doc/openssl/html/man3/OSSL_STORE_expect.html 
6016share/doc/openssl/html/man3/OSSL_STORE_open.html 
6017share/doc/openssl/html/man3/OSSL_trace_enabled.html 
6018share/doc/openssl/html/man3/OSSL_trace_get_category_num.html 
6019share/doc/openssl/html/man3/OSSL_trace_set_channel.html 
6020share/doc/openssl/html/man3/OpenSSL_add_all_algorithms.html 
6021share/doc/openssl/html/man3/OpenSSL_version.html 
6022share/doc/openssl/html/man3/PEM_X509_INFO_read_bio_ex.html 
6023share/doc/openssl/html/man3/PEM_bytes_read_bio.html 
6024share/doc/openssl/html/man3/PEM_read.html 
6025share/doc/openssl/html/man3/PEM_read_CMS.html 
6026share/doc/openssl/html/man3/PEM_read_bio_PrivateKey.html 
6027share/doc/openssl/html/man3/PEM_read_bio_ex.html 
6028share/doc/openssl/html/man3/PEM_write_bio_CMS_stream.html 
6029share/doc/openssl/html/man3/PEM_write_bio_PKCS7_stream.html 
6030share/doc/openssl/html/man3/PKCS12_PBE_keyivgen.html 
6031share/doc/openssl/html/man3/PKCS12_SAFEBAG_create_cert.html 
6032share/doc/openssl/html/man3/PKCS12_SAFEBAG_get0_attrs.html 
6033share/doc/openssl/html/man3/PKCS12_SAFEBAG_get1_cert.html 
6034share/doc/openssl/html/man3/PKCS12_add1_attr_by_NID.html 
6035share/doc/openssl/html/man3/PKCS12_add_CSPName_asc.html 
6036share/doc/openssl/html/man3/PKCS12_add_cert.html 
6037share/doc/openssl/html/man3/PKCS12_add_friendlyname_asc.html 
6038share/doc/openssl/html/man3/PKCS12_add_localkeyid.html 
6039share/doc/openssl/html/man3/PKCS12_add_safe.html 
6040share/doc/openssl/html/man3/PKCS12_create.html 
6041share/doc/openssl/html/man3/PKCS12_decrypt_skey.html 
6042share/doc/openssl/html/man3/PKCS12_gen_mac.html 
6043share/doc/openssl/html/man3/PKCS12_get_friendlyname.html 
6044share/doc/openssl/html/man3/PKCS12_init.html 
6045share/doc/openssl/html/man3/PKCS12_item_decrypt_d2i.html 
6046share/doc/openssl/html/man3/PKCS12_key_gen_utf8_ex.html 
6047share/doc/openssl/html/man3/PKCS12_newpass.html 
6048share/doc/openssl/html/man3/PKCS12_pack_p7encdata.html 
6049share/doc/openssl/html/man3/PKCS12_parse.html 
6050share/doc/openssl/html/man3/PKCS5_PBE_keyivgen.html 
6051share/doc/openssl/html/man3/PKCS5_PBKDF2_HMAC.html 
6052share/doc/openssl/html/man3/PKCS7_decrypt.html 
6053share/doc/openssl/html/man3/PKCS7_encrypt.html 
6054share/doc/openssl/html/man3/PKCS7_get_octet_string.html 
6055share/doc/openssl/html/man3/PKCS7_sign.html 
6056share/doc/openssl/html/man3/PKCS7_sign_add_signer.html 
6057share/doc/openssl/html/man3/PKCS7_type_is_other.html 
6058share/doc/openssl/html/man3/PKCS7_verify.html 
6059share/doc/openssl/html/man3/PKCS8_encrypt.html 
6060share/doc/openssl/html/man3/PKCS8_pkey_add1_attr.html 
6061share/doc/openssl/html/man3/RAND_add.html 
6062share/doc/openssl/html/man3/RAND_bytes.html 
6063share/doc/openssl/html/man3/RAND_cleanup.html 
6064share/doc/openssl/html/man3/RAND_egd.html 
6065share/doc/openssl/html/man3/RAND_get0_primary.html 
6066share/doc/openssl/html/man3/RAND_load_file.html 
6067share/doc/openssl/html/man3/RAND_set_DRBG_type.html 
6068share/doc/openssl/html/man3/RAND_set_rand_method.html 
6069share/doc/openssl/html/man3/RC4_set_key.html 
6070share/doc/openssl/html/man3/RIPEMD160_Init.html 
6071share/doc/openssl/html/man3/RSA_blinding_on.html 
6072share/doc/openssl/html/man3/RSA_check_key.html 
6073share/doc/openssl/html/man3/RSA_generate_key.html 
6074share/doc/openssl/html/man3/RSA_get0_key.html 
6075share/doc/openssl/html/man3/RSA_meth_new.html 
6076share/doc/openssl/html/man3/RSA_new.html 
6077share/doc/openssl/html/man3/RSA_padding_add_PKCS1_type_1.html 
6078share/doc/openssl/html/man3/RSA_print.html 
6079share/doc/openssl/html/man3/RSA_private_encrypt.html 
6080share/doc/openssl/html/man3/RSA_public_encrypt.html 
6081share/doc/openssl/html/man3/RSA_set_method.html 
6082share/doc/openssl/html/man3/RSA_sign.html 
6083share/doc/openssl/html/man3/RSA_sign_ASN1_OCTET_STRING.html 
6084share/doc/openssl/html/man3/RSA_size.html 
6085share/doc/openssl/html/man3/SCT_new.html 
6086share/doc/openssl/html/man3/SCT_print.html 
6087share/doc/openssl/html/man3/SCT_validate.html 
6088share/doc/openssl/html/man3/SHA256_Init.html 
6089share/doc/openssl/html/man3/SMIME_read_ASN1.html 
6090share/doc/openssl/html/man3/SMIME_read_CMS.html 
6091share/doc/openssl/html/man3/SMIME_read_PKCS7.html 
6092share/doc/openssl/html/man3/SMIME_write_ASN1.html 
6093share/doc/openssl/html/man3/SMIME_write_CMS.html 
6094share/doc/openssl/html/man3/SMIME_write_PKCS7.html 
6095share/doc/openssl/html/man3/SRP_Calc_B.html 
6096share/doc/openssl/html/man3/SRP_VBASE_new.html 
6097share/doc/openssl/html/man3/SRP_create_verifier.html 
6098share/doc/openssl/html/man3/SRP_user_pwd_new.html 
6099share/doc/openssl/html/man3/SSL_CIPHER_get_name.html 
6100share/doc/openssl/html/man3/SSL_COMP_add_compression_method.html 
6101share/doc/openssl/html/man3/SSL_CONF_CTX_new.html 
6102share/doc/openssl/html/man3/SSL_CONF_CTX_set1_prefix.html 
6103share/doc/openssl/html/man3/SSL_CONF_CTX_set_flags.html 
6104share/doc/openssl/html/man3/SSL_CONF_CTX_set_ssl_ctx.html 
6105share/doc/openssl/html/man3/SSL_CONF_cmd.html 
6106share/doc/openssl/html/man3/SSL_CONF_cmd_argv.html 
6107share/doc/openssl/html/man3/SSL_CTX_add1_chain_cert.html 
6108share/doc/openssl/html/man3/SSL_CTX_add_extra_chain_cert.html 
6109share/doc/openssl/html/man3/SSL_CTX_add_session.html 
6110share/doc/openssl/html/man3/SSL_CTX_config.html 
6111share/doc/openssl/html/man3/SSL_CTX_ctrl.html 
6112share/doc/openssl/html/man3/SSL_CTX_dane_enable.html 
6113share/doc/openssl/html/man3/SSL_CTX_flush_sessions.html 
6114share/doc/openssl/html/man3/SSL_CTX_free.html 
6115share/doc/openssl/html/man3/SSL_CTX_get0_param.html 
6116share/doc/openssl/html/man3/SSL_CTX_get_verify_mode.html 
6117share/doc/openssl/html/man3/SSL_CTX_has_client_custom_ext.html 
6118share/doc/openssl/html/man3/SSL_CTX_load_verify_locations.html 
6119share/doc/openssl/html/man3/SSL_CTX_new.html 
6120share/doc/openssl/html/man3/SSL_CTX_sess_number.html 
6121share/doc/openssl/html/man3/SSL_CTX_sess_set_cache_size.html 
6122share/doc/openssl/html/man3/SSL_CTX_sess_set_get_cb.html 
6123share/doc/openssl/html/man3/SSL_CTX_sessions.html 
6124share/doc/openssl/html/man3/SSL_CTX_set0_CA_list.html 
6125share/doc/openssl/html/man3/SSL_CTX_set1_curves.html 
6126share/doc/openssl/html/man3/SSL_CTX_set1_sigalgs.html 
6127share/doc/openssl/html/man3/SSL_CTX_set1_verify_cert_store.html 
6128share/doc/openssl/html/man3/SSL_CTX_set_alpn_select_cb.html 
6129share/doc/openssl/html/man3/SSL_CTX_set_cert_cb.html 
6130share/doc/openssl/html/man3/SSL_CTX_set_cert_store.html 
6131share/doc/openssl/html/man3/SSL_CTX_set_cert_verify_callback.html 
6132share/doc/openssl/html/man3/SSL_CTX_set_cipher_list.html 
6133share/doc/openssl/html/man3/SSL_CTX_set_client_cert_cb.html 
6134share/doc/openssl/html/man3/SSL_CTX_set_client_hello_cb.html 
6135share/doc/openssl/html/man3/SSL_CTX_set_ct_validation_callback.html 
6136share/doc/openssl/html/man3/SSL_CTX_set_ctlog_list_file.html 
6137share/doc/openssl/html/man3/SSL_CTX_set_default_passwd_cb.html 
6138share/doc/openssl/html/man3/SSL_CTX_set_generate_session_id.html 
6139share/doc/openssl/html/man3/SSL_CTX_set_info_callback.html 
6140share/doc/openssl/html/man3/SSL_CTX_set_keylog_callback.html 
6141share/doc/openssl/html/man3/SSL_CTX_set_max_cert_list.html 
6142share/doc/openssl/html/man3/SSL_CTX_set_min_proto_version.html 
6143share/doc/openssl/html/man3/SSL_CTX_set_mode.html 
6144share/doc/openssl/html/man3/SSL_CTX_set_msg_callback.html 
6145share/doc/openssl/html/man3/SSL_CTX_set_num_tickets.html 
6146share/doc/openssl/html/man3/SSL_CTX_set_options.html 
6147share/doc/openssl/html/man3/SSL_CTX_set_psk_client_callback.html 
6148share/doc/openssl/html/man3/SSL_CTX_set_quiet_shutdown.html 
6149share/doc/openssl/html/man3/SSL_CTX_set_read_ahead.html 
6150share/doc/openssl/html/man3/SSL_CTX_set_record_padding_callback.html 
6151share/doc/openssl/html/man3/SSL_CTX_set_security_level.html 
6152share/doc/openssl/html/man3/SSL_CTX_set_session_cache_mode.html 
6153share/doc/openssl/html/man3/SSL_CTX_set_session_id_context.html 
6154share/doc/openssl/html/man3/SSL_CTX_set_session_ticket_cb.html 
6155share/doc/openssl/html/man3/SSL_CTX_set_split_send_fragment.html 
6156share/doc/openssl/html/man3/SSL_CTX_set_srp_password.html 
6157share/doc/openssl/html/man3/SSL_CTX_set_ssl_version.html 
6158share/doc/openssl/html/man3/SSL_CTX_set_stateless_cookie_generate_cb.html 
6159share/doc/openssl/html/man3/SSL_CTX_set_timeout.html 
6160share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_callback.html 
6161share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_cb.html 
6162share/doc/openssl/html/man3/SSL_CTX_set_tlsext_ticket_key_cb.html 
6163share/doc/openssl/html/man3/SSL_CTX_set_tlsext_use_srtp.html 
6164share/doc/openssl/html/man3/SSL_CTX_set_tmp_dh_callback.html 
6165share/doc/openssl/html/man3/SSL_CTX_set_tmp_ecdh.html 
6166share/doc/openssl/html/man3/SSL_CTX_set_verify.html 
6167share/doc/openssl/html/man3/SSL_CTX_use_certificate.html 
6168share/doc/openssl/html/man3/SSL_CTX_use_psk_identity_hint.html 
6169share/doc/openssl/html/man3/SSL_CTX_use_serverinfo.html 
6170share/doc/openssl/html/man3/SSL_SESSION_free.html 
6171share/doc/openssl/html/man3/SSL_SESSION_get0_cipher.html 
6172share/doc/openssl/html/man3/SSL_SESSION_get0_hostname.html 
6173share/doc/openssl/html/man3/SSL_SESSION_get0_id_context.html 
6174share/doc/openssl/html/man3/SSL_SESSION_get0_peer.html 
6175share/doc/openssl/html/man3/SSL_SESSION_get_compress_id.html 
6176share/doc/openssl/html/man3/SSL_SESSION_get_protocol_version.html 
6177share/doc/openssl/html/man3/SSL_SESSION_get_time.html 
6178share/doc/openssl/html/man3/SSL_SESSION_has_ticket.html 
6179share/doc/openssl/html/man3/SSL_SESSION_is_resumable.html 
6180share/doc/openssl/html/man3/SSL_SESSION_print.html 
6181share/doc/openssl/html/man3/SSL_SESSION_set1_id.html 
6182share/doc/openssl/html/man3/SSL_accept.html 
6183share/doc/openssl/html/man3/SSL_alert_type_string.html 
6184share/doc/openssl/html/man3/SSL_alloc_buffers.html 
6185share/doc/openssl/html/man3/SSL_check_chain.html 
6186share/doc/openssl/html/man3/SSL_clear.html 
6187share/doc/openssl/html/man3/SSL_connect.html 
6188share/doc/openssl/html/man3/SSL_do_handshake.html 
6189share/doc/openssl/html/man3/SSL_export_keying_material.html 
6190share/doc/openssl/html/man3/SSL_extension_supported.html 
6191share/doc/openssl/html/man3/SSL_free.html 
6192share/doc/openssl/html/man3/SSL_get0_peer_scts.html 
6193share/doc/openssl/html/man3/SSL_get_SSL_CTX.html 
6194share/doc/openssl/html/man3/SSL_get_all_async_fds.html 
6195share/doc/openssl/html/man3/SSL_get_certificate.html 
6196share/doc/openssl/html/man3/SSL_get_ciphers.html 
6197share/doc/openssl/html/man3/SSL_get_client_random.html 
6198share/doc/openssl/html/man3/SSL_get_current_cipher.html 
6199share/doc/openssl/html/man3/SSL_get_default_timeout.html 
6200share/doc/openssl/html/man3/SSL_get_error.html 
6201share/doc/openssl/html/man3/SSL_get_extms_support.html 
6202share/doc/openssl/html/man3/SSL_get_fd.html 
6203share/doc/openssl/html/man3/SSL_get_peer_cert_chain.html 
6204share/doc/openssl/html/man3/SSL_get_peer_certificate.html 
6205share/doc/openssl/html/man3/SSL_get_peer_signature_nid.html 
6206share/doc/openssl/html/man3/SSL_get_peer_tmp_key.html 
6207share/doc/openssl/html/man3/SSL_get_psk_identity.html 
6208share/doc/openssl/html/man3/SSL_get_rbio.html 
6209share/doc/openssl/html/man3/SSL_get_session.html 
6210share/doc/openssl/html/man3/SSL_get_shared_sigalgs.html 
6211share/doc/openssl/html/man3/SSL_get_verify_result.html 
6212share/doc/openssl/html/man3/SSL_get_version.html 
6213share/doc/openssl/html/man3/SSL_group_to_name.html 
6214share/doc/openssl/html/man3/SSL_in_init.html 
6215share/doc/openssl/html/man3/SSL_key_update.html 
6216share/doc/openssl/html/man3/SSL_library_init.html 
6217share/doc/openssl/html/man3/SSL_load_client_CA_file.html 
6218share/doc/openssl/html/man3/SSL_new.html 
6219share/doc/openssl/html/man3/SSL_pending.html 
6220share/doc/openssl/html/man3/SSL_read.html 
6221share/doc/openssl/html/man3/SSL_read_early_data.html 
6222share/doc/openssl/html/man3/SSL_rstate_string.html 
6223share/doc/openssl/html/man3/SSL_session_reused.html 
6224share/doc/openssl/html/man3/SSL_set1_host.html 
6225share/doc/openssl/html/man3/SSL_set_async_callback.html 
6226share/doc/openssl/html/man3/SSL_set_bio.html 
6227share/doc/openssl/html/man3/SSL_set_connect_state.html 
6228share/doc/openssl/html/man3/SSL_set_fd.html 
6229share/doc/openssl/html/man3/SSL_set_retry_verify.html 
6230share/doc/openssl/html/man3/SSL_set_session.html 
6231share/doc/openssl/html/man3/SSL_set_shutdown.html 
6232share/doc/openssl/html/man3/SSL_set_verify_result.html 
6233share/doc/openssl/html/man3/SSL_shutdown.html 
6234share/doc/openssl/html/man3/SSL_state_string.html 
6235share/doc/openssl/html/man3/SSL_want.html 
6236share/doc/openssl/html/man3/SSL_write.html 
6237share/doc/openssl/html/man3/TS_RESP_CTX_new.html 
6238share/doc/openssl/html/man3/TS_VERIFY_CTX_set_certs.html 
6239share/doc/openssl/html/man3/UI_STRING.html 
6240share/doc/openssl/html/man3/UI_UTIL_read_pw.html 
6241share/doc/openssl/html/man3/UI_create_method.html 
6242share/doc/openssl/html/man3/UI_new.html 
6243share/doc/openssl/html/man3/X509V3_get_d2i.html 
6244share/doc/openssl/html/man3/X509V3_set_ctx.html 
6245share/doc/openssl/html/man3/X509_ALGOR_dup.html 
6246share/doc/openssl/html/man3/X509_CRL_get0_by_serial.html 
6247share/doc/openssl/html/man3/X509_EXTENSION_set_object.html 
6248share/doc/openssl/html/man3/X509_LOOKUP.html 
6249share/doc/openssl/html/man3/X509_LOOKUP_hash_dir.html 
6250share/doc/openssl/html/man3/X509_LOOKUP_meth_new.html 
6251share/doc/openssl/html/man3/X509_NAME_ENTRY_get_object.html 
6252share/doc/openssl/html/man3/X509_NAME_add_entry_by_txt.html 
6253share/doc/openssl/html/man3/X509_NAME_get0_der.html 
6254share/doc/openssl/html/man3/X509_NAME_get_index_by_NID.html 
6255share/doc/openssl/html/man3/X509_NAME_print_ex.html 
6256share/doc/openssl/html/man3/X509_PUBKEY_new.html 
6257share/doc/openssl/html/man3/X509_SIG_get0.html 
6258share/doc/openssl/html/man3/X509_STORE_CTX_get_error.html 
6259share/doc/openssl/html/man3/X509_STORE_CTX_new.html 
6260share/doc/openssl/html/man3/X509_STORE_CTX_set_verify_cb.html 
6261share/doc/openssl/html/man3/X509_STORE_add_cert.html 
6262share/doc/openssl/html/man3/X509_STORE_get0_param.html 
6263share/doc/openssl/html/man3/X509_STORE_new.html 
6264share/doc/openssl/html/man3/X509_STORE_set_verify_cb_func.html 
6265share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_flags.html 
6266share/doc/openssl/html/man3/X509_add_cert.html 
6267share/doc/openssl/html/man3/X509_check_ca.html 
6268share/doc/openssl/html/man3/X509_check_host.html 
6269share/doc/openssl/html/man3/X509_check_issued.html 
6270share/doc/openssl/html/man3/X509_check_private_key.html 
6271share/doc/openssl/html/man3/X509_check_purpose.html 
6272share/doc/openssl/html/man3/X509_cmp.html 
6273share/doc/openssl/html/man3/X509_cmp_time.html 
6274share/doc/openssl/html/man3/X509_digest.html 
6275share/doc/openssl/html/man3/X509_dup.html 
6276share/doc/openssl/html/man3/X509_get0_distinguishing_id.html 
6277share/doc/openssl/html/man3/X509_get0_notBefore.html 
6278share/doc/openssl/html/man3/X509_get0_signature.html 
6279share/doc/openssl/html/man3/X509_get0_uids.html 
6280share/doc/openssl/html/man3/X509_get_extension_flags.html 
6281share/doc/openssl/html/man3/X509_get_pubkey.html 
6282share/doc/openssl/html/man3/X509_get_serialNumber.html 
6283share/doc/openssl/html/man3/X509_get_subject_name.html 
6284share/doc/openssl/html/man3/X509_get_version.html 
6285share/doc/openssl/html/man3/X509_load_http.html 
6286share/doc/openssl/html/man3/X509_new.html 
6287share/doc/openssl/html/man3/X509_sign.html 
6288share/doc/openssl/html/man3/X509_verify.html 
6289share/doc/openssl/html/man3/X509_verify_cert.html 
6290share/doc/openssl/html/man3/X509v3_get_ext_by_NID.html 
6291share/doc/openssl/html/man3/b2i_PVK_bio_ex.html 
6292share/doc/openssl/html/man3/d2i_PKCS8PrivateKey_bio.html 
6293share/doc/openssl/html/man3/d2i_PrivateKey.html 
6294share/doc/openssl/html/man3/d2i_RSAPrivateKey.html 
6295share/doc/openssl/html/man3/d2i_SSL_SESSION.html 
6296share/doc/openssl/html/man3/d2i_X509.html 
6297share/doc/openssl/html/man3/i2d_CMS_bio_stream.html 
6298share/doc/openssl/html/man3/i2d_PKCS7_bio_stream.html 
6299share/doc/openssl/html/man3/i2d_re_X509_tbs.html 
6300share/doc/openssl/html/man3/o2i_SCT_LIST.html 
6301share/doc/openssl/html/man3/s2i_ASN1_IA5STRING.html 
6302share/doc/openssl/html/man5/config.html 
6303share/doc/openssl/html/man5/fips_config.html 
6304share/doc/openssl/html/man5/x509v3_config.html 
6305share/doc/openssl/html/man7/EVP_ASYM_CIPHER-RSA.html 
6306share/doc/openssl/html/man7/EVP_ASYM_CIPHER-SM2.html 
6307share/doc/openssl/html/man7/EVP_CIPHER-AES.html 
6308share/doc/openssl/html/man7/EVP_CIPHER-ARIA.html 
6309share/doc/openssl/html/man7/EVP_CIPHER-BLOWFISH.html 
6310share/doc/openssl/html/man7/EVP_CIPHER-CAMELLIA.html 
6311share/doc/openssl/html/man7/EVP_CIPHER-CAST.html 
6312share/doc/openssl/html/man7/EVP_CIPHER-CHACHA.html 
6313share/doc/openssl/html/man7/EVP_CIPHER-DES.html 
6314share/doc/openssl/html/man7/EVP_CIPHER-IDEA.html 
6315share/doc/openssl/html/man7/EVP_CIPHER-NULL.html 
6316share/doc/openssl/html/man7/EVP_CIPHER-RC2.html 
6317share/doc/openssl/html/man7/EVP_CIPHER-RC4.html 
6318share/doc/openssl/html/man7/EVP_CIPHER-RC5.html 
6319share/doc/openssl/html/man7/EVP_CIPHER-SEED.html 
6320share/doc/openssl/html/man7/EVP_CIPHER-SM4.html 
6321share/doc/openssl/html/man7/EVP_KDF-HKDF.html 
6322share/doc/openssl/html/man7/EVP_KDF-KB.html 
6323share/doc/openssl/html/man7/EVP_KDF-KRB5KDF.html 
6324share/doc/openssl/html/man7/EVP_KDF-PBKDF1.html 
6325share/doc/openssl/html/man7/EVP_KDF-PBKDF2.html 
6326share/doc/openssl/html/man7/EVP_KDF-PKCS12KDF.html 
6327share/doc/openssl/html/man7/EVP_KDF-SCRYPT.html 
6328share/doc/openssl/html/man7/EVP_KDF-SS.html 
6329share/doc/openssl/html/man7/EVP_KDF-SSHKDF.html 
6330share/doc/openssl/html/man7/EVP_KDF-TLS13_KDF.html 
6331share/doc/openssl/html/man7/EVP_KDF-TLS1_PRF.html 
6332share/doc/openssl/html/man7/EVP_KDF-X942-ASN1.html 
6333share/doc/openssl/html/man7/EVP_KDF-X942-CONCAT.html 
6334share/doc/openssl/html/man7/EVP_KDF-X963.html 
6335share/doc/openssl/html/man7/EVP_KEM-RSA.html 
6336share/doc/openssl/html/man7/EVP_KEYEXCH-DH.html 
6337share/doc/openssl/html/man7/EVP_KEYEXCH-ECDH.html 
6338share/doc/openssl/html/man7/EVP_KEYEXCH-X25519.html 
6339share/doc/openssl/html/man7/EVP_MAC-BLAKE2.html 
6340share/doc/openssl/html/man7/EVP_MAC-CMAC.html 
6341share/doc/openssl/html/man7/EVP_MAC-GMAC.html 
6342share/doc/openssl/html/man7/EVP_MAC-HMAC.html 
6343share/doc/openssl/html/man7/EVP_MAC-KMAC.html 
6344share/doc/openssl/html/man7/EVP_MAC-Poly1305.html 
6345share/doc/openssl/html/man7/EVP_MAC-Siphash.html 
6346share/doc/openssl/html/man7/EVP_MD-BLAKE2.html 
6347share/doc/openssl/html/man7/EVP_MD-MD2.html 
6348share/doc/openssl/html/man7/EVP_MD-MD4.html 
6349share/doc/openssl/html/man7/EVP_MD-MD5-SHA1.html 
6350share/doc/openssl/html/man7/EVP_MD-MD5.html 
6351share/doc/openssl/html/man7/EVP_MD-MDC2.html 
6352share/doc/openssl/html/man7/EVP_MD-NULL.html 
6353share/doc/openssl/html/man7/EVP_MD-RIPEMD160.html 
6354share/doc/openssl/html/man7/EVP_MD-SHA1.html 
6355share/doc/openssl/html/man7/EVP_MD-SHA2.html 
6356share/doc/openssl/html/man7/EVP_MD-SHA3.html 
6357share/doc/openssl/html/man7/EVP_MD-SHAKE.html 
6358share/doc/openssl/html/man7/EVP_MD-SM3.html 
6359share/doc/openssl/html/man7/EVP_MD-WHIRLPOOL.html 
6360share/doc/openssl/html/man7/EVP_MD-common.html 
6361share/doc/openssl/html/man7/EVP_PKEY-DH.html 
6362share/doc/openssl/html/man7/EVP_PKEY-DSA.html 
6363share/doc/openssl/html/man7/EVP_PKEY-EC.html 
6364share/doc/openssl/html/man7/EVP_PKEY-FFC.html 
6365share/doc/openssl/html/man7/EVP_PKEY-HMAC.html 
6366share/doc/openssl/html/man7/EVP_PKEY-RSA.html 
6367share/doc/openssl/html/man7/EVP_PKEY-SM2.html 
6368share/doc/openssl/html/man7/EVP_PKEY-X25519.html 
6369share/doc/openssl/html/man7/EVP_RAND-CTR-DRBG.html 
6370share/doc/openssl/html/man7/EVP_RAND-HASH-DRBG.html 
6371share/doc/openssl/html/man7/EVP_RAND-HMAC-DRBG.html 
6372share/doc/openssl/html/man7/EVP_RAND-SEED-SRC.html 
6373share/doc/openssl/html/man7/EVP_RAND-TEST-RAND.html 
6374share/doc/openssl/html/man7/EVP_RAND.html 
6375share/doc/openssl/html/man7/EVP_SIGNATURE-DSA.html 
6376share/doc/openssl/html/man7/EVP_SIGNATURE-ECDSA.html 
6377share/doc/openssl/html/man7/EVP_SIGNATURE-ED25519.html 
6378share/doc/openssl/html/man7/EVP_SIGNATURE-HMAC.html 
6379share/doc/openssl/html/man7/EVP_SIGNATURE-RSA.html 
6380share/doc/openssl/html/man7/OSSL_PROVIDER-FIPS.html 
6381share/doc/openssl/html/man7/OSSL_PROVIDER-base.html 
6382share/doc/openssl/html/man7/OSSL_PROVIDER-default.html 
6383share/doc/openssl/html/man7/OSSL_PROVIDER-legacy.html 
6384share/doc/openssl/html/man7/OSSL_PROVIDER-null.html 
6385share/doc/openssl/html/man7/RAND.html 
6386share/doc/openssl/html/man7/RSA-PSS.html 
6387share/doc/openssl/html/man7/X25519.html 
6388share/doc/openssl/html/man7/bio.html 
6389share/doc/openssl/html/man7/crypto.html 
6390share/doc/openssl/html/man7/ct.html 
6391share/doc/openssl/html/man7/des_modes.html 
6392share/doc/openssl/html/man7/evp.html 
6393share/doc/openssl/html/man7/fips_module.html 
6394share/doc/openssl/html/man7/img/cipher.png 
6395share/doc/openssl/html/man7/img/digest.png 
6396share/doc/openssl/html/man7/img/kdf.png 
6397share/doc/openssl/html/man7/img/mac.png 
6398share/doc/openssl/html/man7/img/pkey.png 
6399share/doc/openssl/html/man7/img/rand.png 
6400share/doc/openssl/html/man7/life_cycle-cipher.html 
6401share/doc/openssl/html/man7/life_cycle-digest.html 
6402share/doc/openssl/html/man7/life_cycle-kdf.html 
6403share/doc/openssl/html/man7/life_cycle-mac.html 
6404share/doc/openssl/html/man7/life_cycle-pkey.html 
6405share/doc/openssl/html/man7/life_cycle-rand.html 
6406share/doc/openssl/html/man7/migration_guide.html 
6407share/doc/openssl/html/man7/openssl-core.h.html 
6408share/doc/openssl/html/man7/openssl-core_dispatch.h.html 
6409share/doc/openssl/html/man7/openssl-core_names.h.html 
6410share/doc/openssl/html/man7/openssl-env.html 
6411share/doc/openssl/html/man7/openssl-glossary.html 
6412share/doc/openssl/html/man7/openssl-threads.html 
6413share/doc/openssl/html/man7/openssl_user_macros.html 
6414share/doc/openssl/html/man7/ossl_store-file.html 
6415share/doc/openssl/html/man7/ossl_store.html 
6416share/doc/openssl/html/man7/passphrase-encoding.html 
6417share/doc/openssl/html/man7/property.html 
6418share/doc/openssl/html/man7/provider-asym_cipher.html 
6419share/doc/openssl/html/man7/provider-base.html 
6420share/doc/openssl/html/man7/provider-cipher.html 
6421share/doc/openssl/html/man7/provider-decoder.html 
6422share/doc/openssl/html/man7/provider-digest.html 
6423share/doc/openssl/html/man7/provider-encoder.html 
6424share/doc/openssl/html/man7/provider-kdf.html 
6425share/doc/openssl/html/man7/provider-kem.html 
6426share/doc/openssl/html/man7/provider-keyexch.html 
6427share/doc/openssl/html/man7/provider-keymgmt.html 
6428share/doc/openssl/html/man7/provider-mac.html 
6429share/doc/openssl/html/man7/provider-object.html 
6430share/doc/openssl/html/man7/provider-rand.html 
6431share/doc/openssl/html/man7/provider-signature.html 
6432share/doc/openssl/html/man7/provider-storemgmt.html 
6433share/doc/openssl/html/man7/provider.html 
6434share/doc/openssl/html/man7/proxy-certificates.html 
6435share/doc/openssl/html/man7/ssl.html 
6436share/doc/openssl/html/man7/x509.html 
6437share/examples/openssl/ct_log_list.cnf 5646share/examples/openssl/ct_log_list.cnf
6438share/examples/openssl/ct_log_list.cnf.dist 5647share/examples/openssl/ct_log_list.cnf.dist
6439share/examples/openssl/misc/CA.pl 5648share/examples/openssl/misc/CA.pl
6440share/examples/openssl/misc/tsget 5649share/examples/openssl/misc/tsget
6441share/examples/openssl/misc/tsget.pl 5650share/examples/openssl/misc/tsget.pl
6442share/examples/openssl/openssl.cnf 5651share/examples/openssl/openssl.cnf
6443share/examples/openssl/openssl.cnf.dist 5652share/examples/openssl/openssl.cnf.dist

cvs diff -r1.169 -r1.170 pkgsrc/security/openssl/distinfo (expand / switch to unified diff)

--- pkgsrc/security/openssl/distinfo 2023/10/24 21:30:35 1.169
+++ pkgsrc/security/openssl/distinfo 2023/10/27 18:30:12 1.170
@@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
1$NetBSD: distinfo,v 1.169 2023/10/24 21:30:35 wiz Exp $ 1$NetBSD: distinfo,v 1.170 2023/10/27 18:30:12 jperkin Exp $
2 2
3BLAKE2s (openssl-3.1.4.tar.gz) = a2fb05a80f2e8587861edfa5304e995cf7595a262d729593655209de6b67745f 3BLAKE2s (openssl-3.1.4.tar.gz) = a2fb05a80f2e8587861edfa5304e995cf7595a262d729593655209de6b67745f
4SHA512 (openssl-3.1.4.tar.gz) = a69df4a018f57dee7d8a57c8003a6869eba11f1eaa394518976642a993780d0de3326019e92dea4c679c6c581fef568ea616ec541afc0792800359c606dffcd2 4SHA512 (openssl-3.1.4.tar.gz) = a69df4a018f57dee7d8a57c8003a6869eba11f1eaa394518976642a993780d0de3326019e92dea4c679c6c581fef568ea616ec541afc0792800359c606dffcd2
5Size (openssl-3.1.4.tar.gz) = 15569450 bytes 5Size (openssl-3.1.4.tar.gz) = 15569450 bytes
 6SHA1 (patch-Configurations_unix-Makefile.tmpl) = a482c9b1be14428efb99f3ef638eccbcaea506b7

File Added: pkgsrc/security/openssl/patches/patch-Configurations_unix-Makefile.tmpl
$NetBSD: patch-Configurations_unix-Makefile.tmpl,v 1.6 2023/10/27 18:30:12 jperkin Exp $

Do not build or install HTML documentation.

--- Configurations/unix-Makefile.tmpl.orig	2023-10-24 13:41:51.000000000 +0000
+++ Configurations/unix-Makefile.tmpl
@@ -502,7 +502,7 @@ LANG=C
 {- dependmagic('build_programs'); -}: build_programs_nodep
 
 build_generated_pods: $(GENERATED_PODS)
-build_docs: build_man_docs build_html_docs
+build_docs: build_man_docs
 build_man_docs: $(MANDOCS1) $(MANDOCS3) $(MANDOCS5) $(MANDOCS7)
 build_html_docs: $(HTMLDOCS1) $(HTMLDOCS3) $(HTMLDOCS5) $(HTMLDOCS7)
 
@@ -611,7 +611,7 @@ install_sw: install_dev install_engines
 
 uninstall_sw: uninstall_runtime uninstall_modules uninstall_engines uninstall_dev
 
-install_docs: install_man_docs install_html_docs
+install_docs: install_man_docs
 
 uninstall_docs: uninstall_man_docs uninstall_html_docs
 	$(RM) -r "$(DESTDIR)$(DOCDIR)"