head	1.1;
branch	1.1.1;
access;
symbols
	netbsd-11-0-RC4:1.1.1.4
	netbsd-11-0-RC3:1.1.1.4
	netbsd-11-0-RC2:1.1.1.4
	netbsd-11-0-RC1:1.1.1.4
	perseant-exfatfs-base-20250801:1.1.1.4
	netbsd-11:1.1.1.4.0.4
	netbsd-11-base:1.1.1.4
	openssl-3-0-16:1.1.1.4
	netbsd-10-1-RELEASE:1.1.1.2.2.3
	openssl-3-0-15:1.1.1.4
	perseant-exfatfs-base-20240630:1.1.1.4
	perseant-exfatfs:1.1.1.4.0.2
	perseant-exfatfs-base:1.1.1.4
	openssl-3-0-14:1.1.1.4
	netbsd-10-0-RELEASE:1.1.1.2.2.3
	netbsd-10-0-RC6:1.1.1.2.2.3
	netbsd-10-0-RC5:1.1.1.2.2.3
	netbsd-10-0-RC4:1.1.1.2.2.3
	netbsd-10-0-RC3:1.1.1.2.2.3
	netbsd-10-0-RC2:1.1.1.2.2.3
	netbsd-10-0-RC1:1.1.1.2.2.3
	openssl-3-0-12:1.1.1.3
	netbsd-10:1.1.1.2.0.2
	openssl-3-0-9:1.1.1.2
	openssl-3-0-8:1.1.1.1
	OPENSSL:1.1.1;
locks; strict;
comment	@# @;


1.1
date	2023.05.07.18.29.27;	author christos;	state Exp;
branches
	1.1.1.1;
next	;
commitid	qiSmozZniR9fQ3oE;

1.1.1.1
date	2023.05.07.18.29.27;	author christos;	state Exp;
branches;
next	1.1.1.2;
commitid	qiSmozZniR9fQ3oE;

1.1.1.2
date	2023.05.31.19.25.33;	author christos;	state Exp;
branches
	1.1.1.2.2.1;
next	1.1.1.3;
commitid	8HYFmAmfWMeZn9rE;

1.1.1.3
date	2023.10.25.17.14.00;	author christos;	state Exp;
branches;
next	1.1.1.4;
commitid	WlosxnZ6mcSPV1KE;

1.1.1.4
date	2024.06.11.14.31.57;	author christos;	state Exp;
branches;
next	;
commitid	nF1Eum5nW6p0EzdF;

1.1.1.2.2.1
date	2023.05.31.19.25.33;	author martin;	state dead;
branches;
next	1.1.1.2.2.2;
commitid	8h1AajUo1d2d8nAE;

1.1.1.2.2.2
date	2023.08.11.13.41.05;	author martin;	state Exp;
branches;
next	1.1.1.2.2.3;
commitid	8h1AajUo1d2d8nAE;

1.1.1.2.2.3
date	2023.11.02.19.32.14;	author sborrill;	state Exp;
branches;
next	;
commitid	n6UTzan5H15tr4LE;


desc
@@


1.1
log
@Initial revision
@
text
@=pod

=head1 NAME

migration_guide - OpenSSL migration guide

=head1 SYNOPSIS

See the individual manual pages for details.

=head1 DESCRIPTION

This guide details the changes required to migrate to new versions of OpenSSL.
Currently this covers OpenSSL 3.0. For earlier versions refer to
L<https://github.com/openssl/openssl/blob/master/CHANGES.md>.
For an overview of some of the key concepts introduced in OpenSSL 3.0 see
L<crypto(7)>.

=head1 OPENSSL 3.0

=head2 Main Changes from OpenSSL 1.1.1

=head3 Major Release

OpenSSL 3.0 is a major release and consequently any application that currently
uses an older version of OpenSSL will at the very least need to be recompiled in
order to work with the new version. It is the intention that the large majority
of applications will work unchanged with OpenSSL 3.0 if those applications
previously worked with OpenSSL 1.1.1. However this is not guaranteed and some
changes may be required in some cases. Changes may also be required if
applications need to take advantage of some of the new features available in
OpenSSL 3.0 such as the availability of the FIPS module.

=head3 License Change

In previous versions, OpenSSL was licensed under the L<dual OpenSSL and SSLeay
licenses|https://www.openssl.org/source/license-openssl-ssleay.txt>
(both licenses apply). From OpenSSL 3.0 this is replaced by the
L<Apache License v2|https://www.openssl.org/source/apache-license-2.0.txt>.

=head3 Providers and FIPS support

One of the key changes from OpenSSL 1.1.1 is the introduction of the Provider
concept. Providers collect together and make available algorithm implementations.
With OpenSSL 3.0 it is possible to specify, either programmatically or via a
config file, which providers you want to use for any given application.
OpenSSL 3.0 comes with 5 different providers as standard. Over time third
parties may distribute additional providers that can be plugged into OpenSSL.
All algorithm implementations available via providers are accessed through the
"high level" APIs (for example those functions prefixed with C<EVP>). They cannot
be accessed using the L</Low Level APIs>.

One of the standard providers available is the FIPS provider. This makes
available FIPS validated cryptographic algorithms.
The FIPS provider is disabled by default and needs to be enabled explicitly
at configuration time using the C<enable-fips> option. If it is enabled,
the FIPS provider gets built and installed in addition to the other standard
providers. No separate installation procedure is necessary.
There is however a dedicated C<install_fips> make target, which serves the
special purpose of installing only the FIPS provider into an existing
OpenSSL installation.

Not all algorithms may be available for the application at a particular moment.
If the application code uses any digest or cipher algorithm via the EVP interface,
the application should verify the result of the L<EVP_EncryptInit(3)>,
L<EVP_EncryptInit_ex(3)>, and L<EVP_DigestInit(3)> functions. In case when
the requested algorithm is not available, these functions will fail.

See also L</Legacy Algorithms> for information on the legacy provider.

See also L</Completing the installation of the FIPS Module> and
L</Using the FIPS Module in applications>.

=head3 Low Level APIs

OpenSSL has historically provided two sets of APIs for invoking cryptographic
algorithms: the "high level" APIs (such as the C<EVP> APIs) and the "low level"
APIs. The high level APIs are typically designed to work across all algorithm
types. The "low level" APIs are targeted at a specific algorithm implementation.
For example, the EVP APIs provide the functions L<EVP_EncryptInit_ex(3)>,
L<EVP_EncryptUpdate(3)> and L<EVP_EncryptFinal(3)> to perform symmetric
encryption. Those functions can be used with the algorithms AES, CHACHA, 3DES etc.
On the other hand, to do AES encryption using the low level APIs you would have
to call AES specific functions such as L<AES_set_encrypt_key(3)>,
L<AES_encrypt(3)>, and so on. The functions for 3DES are different.
Use of the low level APIs has been informally discouraged by the OpenSSL
development team for a long time. However in OpenSSL 3.0 this is made more
formal. All such low level APIs have been deprecated. You may still use them in
your applications, but you may start to see deprecation warnings during
compilation (dependent on compiler support for this). Deprecated APIs may be
removed from future versions of OpenSSL so you are strongly encouraged to update
your code to use the high level APIs instead.

This is described in more detail in L</Deprecation of Low Level Functions>

=head3 Legacy Algorithms

Some cryptographic algorithms such as B<MD2> and B<DES> that were available via
the EVP APIs are now considered legacy and their use is strongly discouraged.
These legacy EVP algorithms are still available in OpenSSL 3.0 but not by
default. If you want to use them then you must load the legacy provider.
This can be as simple as a config file change, or can be done programmatically.
See L<OSSL_PROVIDER-legacy(7)> for a complete list of algorithms.
Applications using the EVP APIs to access these algorithms should instead use
more modern algorithms. If that is not possible then these applications
should ensure that the legacy provider has been loaded. This can be achieved
either programmatically or via configuration. See L<crypto(7)> man page for
more information about providers.

=head3 Engines and "METHOD" APIs

The refactoring to support Providers conflicts internally with the APIs used to
support engines, including the ENGINE API and any function that creates or
modifies custom "METHODS" (for example L<EVP_MD_meth_new(3)>,
L<EVP_CIPHER_meth_new(3)>, L<EVP_PKEY_meth_new(3)>, L<RSA_meth_new(3)>,
L<EC_KEY_METHOD_new(3)>, etc.). These functions are being deprecated in
OpenSSL 3.0, and users of these APIs should know that their use can likely
bypass provider selection and configuration, with unintended consequences.
This is particularly relevant for applications written to use the OpenSSL 3.0
FIPS module, as detailed below. Authors and maintainers of external engines are
strongly encouraged to refactor their code transforming engines into providers
using the new Provider API and avoiding deprecated methods.

=head3 Support of legacy engines

If openssl is not built without engine support or deprecated API support, engines
will still work. However, their applicability will be limited.

New algorithms provided via engines will still work.

Engine-backed keys can be loaded via custom B<OSSL_STORE> implementation.
In this case the B<EVP_PKEY> objects created via L<ENGINE_load_private_key(3)>
will be concidered legacy and will continue to work.

To ensure the future compatibility, the engines should be turned to providers.
To prefer the provider-based hardware offload, you can specify the default
properties to prefer your provider.

=head3 Versioning Scheme

The OpenSSL versioning scheme has changed with the OpenSSL 3.0 release. The new
versioning scheme has this format:

MAJOR.MINOR.PATCH

For OpenSSL 1.1.1 and below, different patch levels were indicated by a letter
at the end of the release version number. This will no longer be used and
instead the patch level is indicated by the final number in the version. A
change in the second (MINOR) number indicates that new features may have been
added. OpenSSL versions with the same major number are API and ABI compatible.
If the major number changes then API and ABI compatibility is not guaranteed.

For more information, see L<OpenSSL_version(3)>.

=head3 Other major new features

=head4 Certificate Management Protocol (CMP, RFC 4210)

This also covers CRMF (RFC 4211) and HTTP transfer (RFC 6712)
See L<openssl-cmp(1)> and L<OSSL_CMP_exec_certreq(3)> as starting points.

=head4 HTTP(S) client

A proper HTTP(S) client that supports GET and POST, redirection, plain and
ASN.1-encoded contents, proxies, and timeouts.

=head4 Key Derivation Function API (EVP_KDF)

This simplifies the process of adding new KDF and PRF implementations.

Previously KDF algorithms had been shoe-horned into using the EVP_PKEY object
which was not a logical mapping.
Existing applications that use KDF algorithms using EVP_PKEY
(scrypt, TLS1 PRF and HKDF) may be slower as they use an EVP_KDF bridge
internally.
All new applications should use the new L<EVP_KDF(3)> interface.
See also L<OSSL_PROVIDER-default(7)/Key Derivation Function (KDF)> and
L<OSSL_PROVIDER-FIPS(7)/Key Derivation Function (KDF)>.

=head4 Message Authentication Code API (EVP_MAC)

This simplifies the process of adding MAC implementations.

This includes a generic EVP_PKEY to EVP_MAC bridge, to facilitate the continued
use of MACs through raw private keys in functionality such as
L<EVP_DigestSign(3)> and L<EVP_DigestVerify(3)>.

All new applications should use the new L<EVP_MAC(3)> interface.
See also L<OSSL_PROVIDER-default(7)/Message Authentication Code (MAC)>
and L<OSSL_PROVIDER-FIPS(7)/Message Authentication Code (MAC)>.

=head4 Support for Linux Kernel TLS

In order to use KTLS, support for it must be compiled in using the
C<enable-ktls> configuration option. It must also be enabled at run time using
the B<SSL_OP_ENABLE_KTLS> option.

=head4 New Algorithms

=over 4

=item *

KDF algorithms "SINGLE STEP" and "SSH"

See L<EVP_KDF-SS(7)> and L<EVP_KDF-SSHKDF(7)>

=item *

MAC Algorithms "GMAC" and "KMAC"

See L<EVP_MAC-GMAC(7)> and L<EVP_MAC-KMAC(7)>.

=item *

KEM Algorithm "RSASVE"

See L<EVP_KEM-RSA(7)>.

=item *

Cipher Algorithm "AES-SIV"

See L<EVP_EncryptInit(3)/SIV Mode>.

=item *

AES Key Wrap inverse ciphers supported by EVP layer.

The inverse ciphers use AES decryption for wrapping, and AES encryption for
unwrapping. The algorithms are: "AES-128-WRAP-INV", "AES-192-WRAP-INV",
"AES-256-WRAP-INV", "AES-128-WRAP-PAD-INV", "AES-192-WRAP-PAD-INV" and
"AES-256-WRAP-PAD-INV".

=item *

CTS ciphers added to EVP layer.

The algorithms are "AES-128-CBC-CTS", "AES-192-CBC-CTS", "AES-256-CBC-CTS",
"CAMELLIA-128-CBC-CTS", "CAMELLIA-192-CBC-CTS" and "CAMELLIA-256-CBC-CTS".
CS1, CS2 and CS3 variants are supported.

=back

=head4 CMS and PKCS#7 updates

=over 4

=item *

Added CAdES-BES signature verification support.

=item *

Added CAdES-BES signature scheme and attributes support (RFC 5126) to CMS API.

=item *

Added AuthEnvelopedData content type structure (RFC 5083) using AES_GCM

This uses the AES-GCM parameter (RFC 5084) for the Cryptographic Message Syntax.
Its purpose is to support encryption and decryption of a digital envelope that
is both authenticated and encrypted using AES GCM mode.

=item *

L<PKCS7_get_octet_string(3)> and L<PKCS7_type_is_other(3)> were made public.

=back

=head4 PKCS#12 API updates

The default algorithms for pkcs12 creation with the PKCS12_create() function
were changed to more modern PBKDF2 and AES based algorithms. The default
MAC iteration count was changed to PKCS12_DEFAULT_ITER to make it equal
with the password-based encryption iteration count. The default digest
algorithm for the MAC computation was changed to SHA-256. The pkcs12
application now supports -legacy option that restores the previous
default algorithms to support interoperability with legacy systems.

Added enhanced PKCS#12 APIs which accept a library context B<OSSL_LIB_CTX>
and (where relevant) a property query. Other APIs which handle PKCS#7 and
PKCS#8 objects have also been enhanced where required. This includes:

L<PKCS12_add_key_ex(3)>, L<PKCS12_add_safe_ex(3)>, L<PKCS12_add_safes_ex(3)>,
L<PKCS12_create_ex(3)>, L<PKCS12_decrypt_skey_ex(3)>, L<PKCS12_init_ex(3)>,
L<PKCS12_item_decrypt_d2i_ex(3)>, L<PKCS12_item_i2d_encrypt_ex(3)>,
L<PKCS12_key_gen_asc_ex(3)>, L<PKCS12_key_gen_uni_ex(3)>, L<PKCS12_key_gen_utf8_ex(3)>,
L<PKCS12_pack_p7encdata_ex(3)>, L<PKCS12_pbe_crypt_ex(3)>, L<PKCS12_PBE_keyivgen_ex(3)>,
L<PKCS12_SAFEBAG_create_pkcs8_encrypt_ex(3)>, L<PKCS5_pbe2_set_iv_ex(3)>,
L<PKCS5_pbe_set0_algor_ex(3)>, L<PKCS5_pbe_set_ex(3)>, L<PKCS5_pbkdf2_set_ex(3)>,
L<PKCS5_v2_PBE_keyivgen_ex(3)>, L<PKCS5_v2_scrypt_keyivgen_ex(3)>,
L<PKCS8_decrypt_ex(3)>, L<PKCS8_encrypt_ex(3)>, L<PKCS8_set0_pbe_ex(3)>.

As part of this change the EVP_PBE_xxx APIs can also accept a library
context and property query and will call an extended version of the key/IV
derivation function which supports these parameters. This includes
L<EVP_PBE_CipherInit_ex(3)>, L<EVP_PBE_find_ex(3)> and L<EVP_PBE_scrypt_ex(3)>.

=head4 Windows thread synchronization changes

Windows thread synchronization uses read/write primitives (SRWLock) when
supported by the OS, otherwise CriticalSection continues to be used.

=head4 Trace API

A new generic trace API has been added which provides support for enabling
instrumentation through trace output. This feature is mainly intended as an aid
for developers and is disabled by default. To utilize it, OpenSSL needs to be
configured with the C<enable-trace> option.

If the tracing API is enabled, the application can activate trace output by
registering BIOs as trace channels for a number of tracing and debugging
categories. See L<OSSL_trace_enabled(3)>.

=head4 Key validation updates

L<EVP_PKEY_public_check(3)> and L<EVP_PKEY_param_check(3)> now work for
more key types. This includes RSA, DSA, ED25519, X25519, ED448 and X448.
Previously (in 1.1.1) they would return -2. For key types that do not have
parameters then L<EVP_PKEY_param_check(3)> will always return 1.

=head3 Other notable deprecations and changes

=head4 The function code part of an OpenSSL error code is no longer relevant

This code is now always set to zero. Related functions are deprecated.

=head4 STACK and HASH macros have been cleaned up

The type-safe wrappers are declared everywhere and implemented once.
See L<DEFINE_STACK_OF(3)> and L<DECLARE_LHASH_OF(3)>.

=head4 The RAND_DRBG subsystem has been removed

The new L<EVP_RAND(3)> is a partial replacement: the DRBG callback framework is
absent. The RAND_DRBG API did not fit well into the new provider concept as
implemented by EVP_RAND and EVP_RAND_CTX.

=head4 Removed FIPS_mode() and FIPS_mode_set()

These functions are legacy APIs that are not applicable to the new provider
model. Applications should instead use
L<EVP_default_properties_is_fips_enabled(3)> and
L<EVP_default_properties_enable_fips(3)>.

=head4 Key generation is slower

The Miller-Rabin test now uses 64 rounds, which is used for all prime generation,
including RSA key generation. This affects the time for larger keys sizes.

The default key generation method for the regular 2-prime RSA keys was changed
to the FIPS186-4 B.3.6 method (Generation of Probable Primes with Conditions
Based on Auxiliary Probable Primes). This method is slower than the original
method.

=head4 Change PBKDF2 to conform to SP800-132 instead of the older PKCS5 RFC2898

This checks that the salt length is at least 128 bits, the derived key length is
at least 112 bits, and that the iteration count is at least 1000.
For backwards compatibility these checks are disabled by default in the
default provider, but are enabled by default in the FIPS provider.

To enable or disable the checks see B<OSSL_KDF_PARAM_PKCS5> in
L<EVP_KDF-PBKDF2(7)>. The parameter can be set using L<EVP_KDF_derive(3)>.

=head4 Enforce a minimum DH modulus size of 512 bits

Smaller sizes now result in an error.

=head4 SM2 key changes

EC EVP_PKEYs with the SM2 curve have been reworked to automatically become
EVP_PKEY_SM2 rather than EVP_PKEY_EC.

Unlike in previous OpenSSL versions, this means that applications cannot
call C<EVP_PKEY_set_alias_type(pkey, EVP_PKEY_SM2)> to get SM2 computations.

Parameter and key generation is also reworked to make it possible
to generate EVP_PKEY_SM2 parameters and keys. Applications must now generate
SM2 keys directly and must not create an EVP_PKEY_EC key first. It is no longer
possible to import an SM2 key with domain parameters other than the SM2 elliptic
curve ones.

Validation of SM2 keys has been separated from the validation of regular EC
keys, allowing to improve the SM2 validation process to reject loaded private
keys that are not conforming to the SM2 ISO standard.
In particular, a private scalar I<k> outside the range I<< 1 <= k < n-1 >> is
now correctly rejected.

=head4 EVP_PKEY_set_alias_type() method has been removed

This function made a B<EVP_PKEY> object mutable after it had been set up. In
OpenSSL 3.0 it was decided that a provided key should not be able to change its
type, so this function has been removed.

=head4 Functions that return an internal key should be treated as read only

Functions such as L<EVP_PKEY_get0_RSA(3)> behave slightly differently in
OpenSSL 3.0. Previously they returned a pointer to the low-level key used
internally by libcrypto. From OpenSSL 3.0 this key may now be held in a
provider. Calling these functions will only return a handle on the internal key
where the EVP_PKEY was constructed using this key in the first place, for
example using a function or macro such as L<EVP_PKEY_assign_RSA(3)>,
L<EVP_PKEY_set1_RSA(3)>, etc.
Where the EVP_PKEY holds a provider managed key, then these functions now return
a cached copy of the key. Changes to the internal provider key that take place
after the first time the cached key is accessed will not be reflected back in
the cached copy. Similarly any changes made to the cached copy by application
code will not be reflected back in the internal provider key.

For the above reasons the keys returned from these functions should typically be
treated as read-only. To emphasise this the value returned from
L<EVP_PKEY_get0_RSA(3)>, L<EVP_PKEY_get0_DSA(3)>, L<EVP_PKEY_get0_EC_KEY(3)> and
L<EVP_PKEY_get0_DH(3)> have been made const. This may break some existing code.
Applications broken by this change should be modified. The preferred solution is
to refactor the code to avoid the use of these deprecated functions. Failing
this the code should be modified to use a const pointer instead.
The L<EVP_PKEY_get1_RSA(3)>, L<EVP_PKEY_get1_DSA(3)>, L<EVP_PKEY_get1_EC_KEY(3)>
and L<EVP_PKEY_get1_DH(3)> functions continue to return a non-const pointer to
enable them to be "freed". However they should also be treated as read-only.

=head4 The public key check has moved from EVP_PKEY_derive() to EVP_PKEY_derive_set_peer()

This may mean result in an error in L<EVP_PKEY_derive_set_peer(3)> rather than
during L<EVP_PKEY_derive(3)>.
To disable this check use EVP_PKEY_derive_set_peer_ex(dh, peer, 0).

=head4 The print format has cosmetic changes for some functions

The output from numerous "printing" functions such as L<X509_signature_print(3)>,
L<X509_print_ex(3)>, L<X509_CRL_print_ex(3)>, and other similar functions has been
amended such that there may be cosmetic differences between the output
observed in 1.1.1 and 3.0. This also applies to the B<-text> output from the
B<openssl x509> and B<openssl crl> applications.

=head4 Interactive mode from the B<openssl> program has been removed

From now on, running it without arguments is equivalent to B<openssl help>.

=head4 The error return values from some control calls (ctrl) have changed

One significant change is that controls which used to return -2 for
invalid inputs, now return -1 indicating a generic error condition instead.

=head4 DH and DHX key types have different settable parameters

Previously (in 1.1.1) these conflicting parameters were allowed, but will now
result in errors. See L<EVP_PKEY-DH(7)> for further details. This affects the
behaviour of L<openssl-genpkey(1)> for DH parameter generation.

=head4 EVP_CIPHER_CTX_set_flags() ordering change

If using a cipher from a provider the B<EVP_CIPH_FLAG_LENGTH_BITS> flag can only
be set B<after> the cipher has been assigned to the cipher context.
See L<EVP_EncryptInit(3)/FLAGS> for more information.

=head4 Validation of operation context parameters

Due to move of the implementation of cryptographic operations to the
providers, validation of various operation parameters can be postponed until
the actual operation is executed where previously it happened immediately
when an operation parameter was set.

For example when setting an unsupported curve with
EVP_PKEY_CTX_set_ec_paramgen_curve_nid() this function call will not fail
but later keygen operations with the EVP_PKEY_CTX will fail.

=head4 Removal of function code from the error codes

The function code part of the error code is now always set to 0. For that
reason the ERR_GET_FUNC() macro was removed. Applications must resolve
the error codes only using the library number and the reason code.

=head4 ChaCha20-Poly1305 cipher does not allow a truncated IV length to be used

In OpenSSL 3.0 setting the IV length to any value other than 12 will result in an
error.
Prior to OpenSSL 3.0 the ivlen could be smaller that the required 12 byte length,
using EVP_CIPHER_CTX_ctrl(ctx, EVP_CRTL_AEAD_SET_IVLEN, ivlen, NULL). This resulted
in an IV that had leading zero padding.

=head2 Installation and Compilation

Please refer to the INSTALL.md file in the top of the distribution for
instructions on how to build and install OpenSSL 3.0. Please also refer to the
various platform specific NOTES files for your specific platform.

=head2 Upgrading from OpenSSL 1.1.1

Upgrading to OpenSSL 3.0 from OpenSSL 1.1.1 should be relatively straight
forward in most cases. The most likely area where you will encounter problems
is if you have used low level APIs in your code (as discussed above). In that
case you are likely to start seeing deprecation warnings when compiling your
application. If this happens you have 3 options:

=over 4

=item 1.

Ignore the warnings. They are just warnings. The deprecated functions are still present and you may still use them. However be aware that they may be removed from a future version of OpenSSL.

=item 2.

Suppress the warnings. Refer to your compiler documentation on how to do this.

=item 3.

Remove your usage of the low level APIs. In this case you will need to rewrite your code to use the high level APIs instead

=back

=head3 Error code changes

As OpenSSL 3.0 provides a brand new Encoder/Decoder mechanism for working with
widely used file formats, application code that checks for particular error
reason codes on key loading failures might need an update.

Password-protected keys may deserve special attention. If only some errors
are treated as an indicator that the user should be asked about the password again,
it's worth testing these scenarios and processing the newly relevant codes.

There may be more cases to treat specially, depending on the calling application code.

=head2 Upgrading from OpenSSL 1.0.2

Upgrading to OpenSSL 3.0 from OpenSSL 1.0.2 is likely to be significantly more
difficult. In addition to the issues discussed above in the section about
L</Upgrading from OpenSSL 1.1.1>, the main things to be aware of are:

=over 4

=item 1.

The build and installation procedure has changed significantly.

Check the file INSTALL.md in the top of the installation for instructions on how
to build and install OpenSSL for your platform. Also read the various NOTES
files in the same directory, as applicable for your platform.

=item 2.

Many structures have been made opaque in OpenSSL 3.0.

The structure definitions have been removed from the public header files and
moved to internal header files. In practice this means that you can no longer
stack allocate some structures. Instead they must be heap allocated through some
function call (typically those function names have a C<_new> suffix to them).
Additionally you must use "setter" or "getter" functions to access the fields
within those structures.

For example code that previously looked like this:

 EVP_MD_CTX md_ctx;

 /* This line will now generate compiler errors */
 EVP_MD_CTX_init(&md_ctx);

The code needs to be amended to look like this:

 EVP_MD_CTX *md_ctx;

 md_ctx = EVP_MD_CTX_new();
 ...
 ...
 EVP_MD_CTX_free(md_ctx);

=item 3.

Support for TLSv1.3 has been added.

This has a number of implications for SSL/TLS applications. See the
L<TLS1.3 page|https://wiki.openssl.org/index.php/TLS1.3> for further details.

=back

More details about the breaking changes between OpenSSL versions 1.0.2 and 1.1.0
can be found on the
L<OpenSSL 1.1.0 Changes page|https://wiki.openssl.org/index.php/OpenSSL_1.1.0_Changes>.

=head3 Upgrading from the OpenSSL 2.0 FIPS Object Module

The OpenSSL 2.0 FIPS Object Module was a separate download that had to be built
separately and then integrated into your main OpenSSL 1.0.2 build.
In OpenSSL 3.0 the FIPS support is fully integrated into the mainline version of
OpenSSL and is no longer a separate download. For further information see
L</Completing the installation of the FIPS Module>.

The function calls FIPS_mode() and FIPS_mode_set() have been removed
from OpenSSL 3.0. You should rewrite your application to not use them.
See L<fips_module(7)> and L<OSSL_PROVIDER-FIPS(7)> for details.

=head2 Completing the installation of the FIPS Module

The FIPS Module will be built and installed automatically if FIPS support has
been configured. The current documentation can be found in the
L<README-FIPS|https://github.com/openssl/openssl/blob/master/README-FIPS.md> file.

=head2 Programming

Applications written to work with OpenSSL 1.1.1 will mostly just work with
OpenSSL 3.0. However changes will be required if you want to take advantage of
some of the new features that OpenSSL 3.0 makes available. In order to do that
you need to understand some new concepts introduced in OpenSSL 3.0.
Read L<crypto(7)/Library contexts> for further information.

=head3 Library Context

A library context allows different components of a complex application to each
use a different library context and have different providers loaded with
different configuration settings.
See L<crypto(7)/Library contexts> for further info.

If the user creates an B<OSSL_LIB_CTX> via L<OSSL_LIB_CTX_new(3)> then many
functions may need to be changed to pass additional parameters to handle the
library context.

=head4 Using a Library Context - Old functions that should be changed

If a library context is needed then all EVP_* digest functions that return a
B<const EVP_MD *> such as EVP_sha256() should be replaced with a call to
L<EVP_MD_fetch(3)>. See L<crypto(7)/ALGORITHM FETCHING>.

If a library context is needed then all EVP_* cipher functions that return a
B<const EVP_CIPHER *> such as EVP_aes_128_cbc() should be replaced vith a call to
L<EVP_CIPHER_fetch(3)>. See L<crypto(7)/ALGORITHM FETCHING>.

Some functions can be passed an object that has already been set up with a library
context such as L<d2i_X509(3)>, L<d2i_X509_CRL(3)>, L<d2i_X509_REQ(3)> and
L<d2i_X509_PUBKEY(3)>. If NULL is passed instead then the created object will be
set up with the default library context. Use L<X509_new_ex(3)>,
L<X509_CRL_new_ex(3)>, L<X509_REQ_new_ex(3)> and L<X509_PUBKEY_new_ex(3)> if a
library context is required.

All functions listed below with a I<NAME> have a replacment function I<NAME_ex>
that takes B<OSSL_LIB_CTX> as an additional argument. Functions that have other
mappings are listed along with the respective name.

=over 4

=item *

L<ASN1_item_new(3)>, L<ASN1_item_d2i(3)>, L<ASN1_item_d2i_fp(3)>,
L<ASN1_item_d2i_bio(3)>, L<ASN1_item_sign(3)> and L<ASN1_item_verify(3)>

=item *

L<BIO_new(3)>

=item *

b2i_RSA_PVK_bio() and i2b_PVK_bio()

=item *

L<BN_CTX_new(3)> and L<BN_CTX_secure_new(3)>

=item *

L<CMS_AuthEnvelopedData_create(3)>, L<CMS_ContentInfo_new(3)>, L<CMS_data_create(3)>,
L<CMS_digest_create(3)>, L<CMS_EncryptedData_encrypt(3)>, L<CMS_encrypt(3)>,
L<CMS_EnvelopedData_create(3)>, L<CMS_ReceiptRequest_create0(3)> and L<CMS_sign(3)>

=item *

L<CONF_modules_load_file(3)>

=item *

L<CTLOG_new(3)>, L<CTLOG_new_from_base64(3)> and L<CTLOG_STORE_new(3)>

=item *

L<CT_POLICY_EVAL_CTX_new(3)>

=item *

L<d2i_AutoPrivateKey(3)>, L<d2i_PrivateKey(3)> and L<d2i_PUBKEY(3)>

=item *

L<d2i_PrivateKey_bio(3)> and L<d2i_PrivateKey_fp(3)>

Use L<d2i_PrivateKey_ex_bio(3)> and L<d2i_PrivateKey_ex_fp(3)>

=item *

L<EC_GROUP_new(3)>

Use L<EC_GROUP_new_by_curve_name_ex(3)> or L<EC_GROUP_new_from_params(3)>.

=item *

L<EVP_DigestSignInit(3)> and L<EVP_DigestVerifyInit(3)>

=item *

L<EVP_PBE_CipherInit(3)>, L<EVP_PBE_find(3)> and L<EVP_PBE_scrypt(3)>

=item *

L<PKCS5_PBE_keyivgen(3)>

=item *

L<EVP_PKCS82PKEY(3)>

=item *

L<EVP_PKEY_CTX_new_id(3)>

Use L<EVP_PKEY_CTX_new_from_name(3)>

=item *

L<EVP_PKEY_derive_set_peer(3)>, L<EVP_PKEY_new_raw_private_key(3)>
and L<EVP_PKEY_new_raw_public_key(3)>

=item *

L<EVP_SignFinal(3)> and L<EVP_VerifyFinal(3)>

=item *

L<NCONF_new(3)>

=item *

L<OCSP_RESPID_match(3)> and L<OCSP_RESPID_set_by_key(3)>

=item *

L<OPENSSL_thread_stop(3)>

=item *

L<OSSL_STORE_open(3)>

=item *

L<PEM_read_bio_Parameters(3)>, L<PEM_read_bio_PrivateKey(3)>, L<PEM_read_bio_PUBKEY(3)>,
L<PEM_read_PrivateKey(3)> and L<PEM_read_PUBKEY(3)>

=item *

L<PEM_write_bio_PrivateKey(3)>, L<PEM_write_bio_PUBKEY(3)>, L<PEM_write_PrivateKey(3)>
and L<PEM_write_PUBKEY(3)>

=item *

L<PEM_X509_INFO_read_bio(3)> and L<PEM_X509_INFO_read(3)>

=item *

L<PKCS12_add_key(3)>, L<PKCS12_add_safe(3)>, L<PKCS12_add_safes(3)>,
L<PKCS12_create(3)>, L<PKCS12_decrypt_skey(3)>, L<PKCS12_init(3)>, L<PKCS12_item_decrypt_d2i(3)>,
L<PKCS12_item_i2d_encrypt(3)>, L<PKCS12_key_gen_asc(3)>, L<PKCS12_key_gen_uni(3)>,
L<PKCS12_key_gen_utf8(3)>, L<PKCS12_pack_p7encdata(3)>, L<PKCS12_pbe_crypt(3)>,
L<PKCS12_PBE_keyivgen(3)>, L<PKCS12_SAFEBAG_create_pkcs8_encrypt(3)>

=item *

L<PKCS5_pbe_set0_algor(3)>, L<PKCS5_pbe_set(3)>, L<PKCS5_pbe2_set_iv(3)>,
L<PKCS5_pbkdf2_set(3)> and L<PKCS5_v2_scrypt_keyivgen(3)>

=item *

L<PKCS7_encrypt(3)>, L<PKCS7_new(3)> and L<PKCS7_sign(3)>

=item *

L<PKCS8_decrypt(3)>, L<PKCS8_encrypt(3)> and L<PKCS8_set0_pbe(3)>

=item *

L<RAND_bytes(3)> and L<RAND_priv_bytes(3)>

=item *

L<SMIME_write_ASN1(3)>

=item *

L<SSL_load_client_CA_file(3)>

=item *

L<SSL_CTX_new(3)>

=item *

L<TS_RESP_CTX_new(3)>

=item *

L<X509_CRL_new(3)>

=item *

L<X509_load_cert_crl_file(3)> and L<X509_load_cert_file(3)>

=item *

L<X509_LOOKUP_by_subject(3)> and L<X509_LOOKUP_ctrl(3)>

=item *

L<X509_NAME_hash(3)>

=item *

L<X509_new(3)>

=item *

L<X509_REQ_new(3)> and L<X509_REQ_verify(3)>

=item *

L<X509_STORE_CTX_new(3)>, L<X509_STORE_set_default_paths(3)>, L<X509_STORE_load_file(3)>,
L<X509_STORE_load_locations(3)> and L<X509_STORE_load_store(3)>

=back

=head4 New functions that use a Library context

The following functions can be passed a library context if required.
Passing NULL will use the default library context.

=over 4

=item *

L<BIO_new_from_core_bio(3)>

=item *

L<EVP_ASYM_CIPHER_fetch(3)> and L<EVP_ASYM_CIPHER_do_all_provided(3)>

=item *

L<EVP_CIPHER_fetch(3)> and L<EVP_CIPHER_do_all_provided(3)>

=item *

L<EVP_default_properties_enable_fips(3)> and
L<EVP_default_properties_is_fips_enabled(3)>

=item *

L<EVP_KDF_fetch(3)> and L<EVP_KDF_do_all_provided(3)>

=item *

L<EVP_KEM_fetch(3)> and L<EVP_KEM_do_all_provided(3)>

=item *

L<EVP_KEYEXCH_fetch(3)> and L<EVP_KEYEXCH_do_all_provided(3)>

=item *

L<EVP_KEYMGMT_fetch(3)> and L<EVP_KEYMGMT_do_all_provided(3)>

=item *

L<EVP_MAC_fetch(3)> and L<EVP_MAC_do_all_provided(3)>

=item *

L<EVP_MD_fetch(3)> and L<EVP_MD_do_all_provided(3)>

=item *

L<EVP_PKEY_CTX_new_from_pkey(3)>

=item *

L<EVP_PKEY_Q_keygen(3)>

=item *

L<EVP_Q_mac(3)> and L<EVP_Q_digest(3)>

=item *

L<EVP_RAND(3)> and L<EVP_RAND_do_all_provided(3)>

=item *

L<EVP_set_default_properties(3)>

=item *

L<EVP_SIGNATURE_fetch(3)> and L<EVP_SIGNATURE_do_all_provided(3)>

=item *

L<OSSL_CMP_CTX_new(3)> and L<OSSL_CMP_SRV_CTX_new(3)>

=item *

L<OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert(3)>

=item *

L<OSSL_CRMF_MSG_create_popo(3)> and L<OSSL_CRMF_MSGS_verify_popo(3)>

=item *

L<OSSL_CRMF_pbm_new(3)> and L<OSSL_CRMF_pbmp_new(3)>

=item *

L<OSSL_DECODER_CTX_add_extra(3)> and L<OSSL_DECODER_CTX_new_for_pkey(3)>

=item *

L<OSSL_DECODER_fetch(3)> and L<OSSL_DECODER_do_all_provided(3)>

=item *

L<OSSL_ENCODER_CTX_add_extra(3)>

=item *

L<OSSL_ENCODER_fetch(3)> and L<OSSL_ENCODER_do_all_provided(3)>

=item *

L<OSSL_LIB_CTX_free(3)>, L<OSSL_LIB_CTX_load_config(3)> and L<OSSL_LIB_CTX_set0_default(3)>

=item *

L<OSSL_PROVIDER_add_builtin(3)>, L<OSSL_PROVIDER_available(3)>,
L<OSSL_PROVIDER_do_all(3)>, L<OSSL_PROVIDER_load(3)>,
L<OSSL_PROVIDER_set_default_search_path(3)> and L<OSSL_PROVIDER_try_load(3)>

=item *

L<OSSL_SELF_TEST_get_callback(3)> and L<OSSL_SELF_TEST_set_callback(3)>

=item *

L<OSSL_STORE_attach(3)>

=item *

L<OSSL_STORE_LOADER_fetch(3)> and L<OSSL_STORE_LOADER_do_all_provided(3)>

=item *

L<RAND_get0_primary(3)>, L<RAND_get0_private(3)>, L<RAND_get0_public(3)>,
L<RAND_set_DRBG_type(3)> and L<RAND_set_seed_source_type(3)>

=back

=head3 Providers

Providers are described in detail here L<crypto(7)/Providers>.
See also L<crypto(7)/OPENSSL PROVIDERS>.

=head3 Fetching algorithms and property queries

Implicit and Explicit Fetching is described in detail here
L<crypto(7)/ALGORITHM FETCHING>.

=head3 Mapping EVP controls and flags to provider L<OSSL_PARAM(3)> parameters

The existing functions for controls (such as L<EVP_CIPHER_CTX_ctrl(3)>) and
manipulating flags (such as L<EVP_MD_CTX_set_flags(3)>)internally use
B<OSSL_PARAMS> to pass information to/from provider objects.
See L<OSSL_PARAM(3)> for additional information related to parameters.

For ciphers see L<EVP_EncryptInit(3)/CONTROLS>, L<EVP_EncryptInit(3)/FLAGS> and
L<EVP_EncryptInit(3)/PARAMETERS>.

For digests see L<EVP_DigestInit(3)/CONTROLS>, L<EVP_DigestInit(3)/FLAGS> and
L<EVP_DigestInit(3)/PARAMETERS>.

=head3 Deprecation of Low Level Functions

A significant number of APIs have been deprecated in OpenSSL 3.0.
This section describes some common categories of deprecations.
See L</Deprecated function mappings> for the list of deprecated functions
that refer to these categories.

=head4 Providers are a replacement for engines and low-level method overrides

Any accessor that uses an ENGINE is deprecated (such as EVP_PKEY_set1_engine()).
Applications using engines should instead use providers.

Before providers were added algorithms were overriden by changing the methods
used by algorithms. All these methods such as RSA_new_method() and RSA_meth_new()
are now deprecated and can be replaced by using providers instead.

=head4 Deprecated i2d and d2i functions for low-level key types

Any i2d and d2i functions such as d2i_DHparams() that take a low-level key type
have been deprecated. Applications should instead use the L<OSSL_DECODER(3)> and
L<OSSL_ENCODER(3)> APIs to read and write files.
See L<d2i_RSAPrivateKey(3)/Migration> for further details.

=head4 Deprecated low-level key object getters and setters

Applications that set or get low-level key objects (such as EVP_PKEY_set1_DH()
or EVP_PKEY_get0()) should instead use the OSSL_ENCODER
(See L<OSSL_ENCODER_to_bio(3)>) or OSSL_DECODER (See L<OSSL_DECODER_from_bio(3)>)
APIs, or alternatively use L<EVP_PKEY_fromdata(3)> or L<EVP_PKEY_todata(3)>.

=head4 Deprecated low-level key parameter getters

Functions that access low-level objects directly such as L<RSA_get0_n(3)> are now
deprecated. Applications should use one of L<EVP_PKEY_get_bn_param(3)>,
L<EVP_PKEY_get_int_param(3)>, l<EVP_PKEY_get_size_t_param(3)>,
L<EVP_PKEY_get_utf8_string_param(3)>, L<EVP_PKEY_get_octet_string_param(3)> or
L<EVP_PKEY_get_params(3)> to access fields from an EVP_PKEY.
Gettable parameters are listed in L<EVP_PKEY-RSA(7)/Common RSA parameters>,
L<EVP_PKEY-DH(7)/DH parameters>, L<EVP_PKEY-DSA(7)/DSA parameters>,
L<EVP_PKEY-FFC(7)/FFC parameters>, L<EVP_PKEY-EC(7)/Common EC parameters> and
L<EVP_PKEY-X25519(7)/Common X25519, X448, ED25519 and ED448 parameters>.
Applications may also use L<EVP_PKEY_todata(3)> to return all fields.

=head4 Deprecated low-level key parameter setters

Functions that access low-level objects directly such as L<RSA_set0_crt_params(3)>
are now deprecated. Applications should use L<EVP_PKEY_fromdata(3)> to create
new keys from user provided key data. Keys should be immutable once they are
created, so if required the user may use L<EVP_PKEY_todata(3)>, L<OSSL_PARAM_merge(3)>,
and L<EVP_PKEY_fromdata(3)> to create a modified key.
See L<EVP_PKEY-DH(7)/Examples> for more information.
See L</Deprecated low-level key generation functions> for information on
generating a key using parameters.

=head4 Deprecated low-level object creation

Low-level objects were created using methods such as L<RSA_new(3)>,
L<RSA_up_ref(3)> and L<RSA_free(3)>. Applications should instead use the
high-level EVP_PKEY APIs, e.g. L<EVP_PKEY_new(3)>, L<EVP_PKEY_up_ref(3)> and
L<EVP_PKEY_free(3)>.
See also L<EVP_PKEY_CTX_new_from_name(3)> and L<EVP_PKEY_CTX_new_from_pkey(3)>.

EVP_PKEYs may be created in a variety of ways:
See also L</Deprecated low-level key generation functions>,
L</Deprecated low-level key reading and writing functions> and
L</Deprecated low-level key parameter setters>.

=head4 Deprecated low-level encryption functions

Low-level encryption functions such as L<AES_encrypt(3)> and L<AES_decrypt(3)>
have been informally discouraged from use for a long time. Applications should
instead use the high level EVP APIs L<EVP_EncryptInit_ex(3)>,
L<EVP_EncryptUpdate(3)>, and L<EVP_EncryptFinal_ex(3)> or
L<EVP_DecryptInit_ex(3)>, L<EVP_DecryptUpdate(3)> and L<EVP_DecryptFinal_ex(3)>.

=head4 Deprecated low-level digest functions

Use of low-level digest functions such as L<SHA1_Init(3)> have been
informally discouraged from use for a long time.  Applications should instead
use the the high level EVP APIs L<EVP_DigestInit_ex(3)>, L<EVP_DigestUpdate(3)>
and L<EVP_DigestFinal_ex(3)>, or the quick one-shot L<EVP_Q_digest(3)>.

Note that the functions L<SHA1(3)>, L<SHA224(3)>, L<SHA256(3)>, L<SHA384(3)>
and L<SHA512(3)> have changed to macros that use L<EVP_Q_digest(3)>.

=head4 Deprecated low-level signing functions

Use of low-level signing functions such as L<DSA_sign(3)> have been
informally discouraged for a long time. Instead applications should use
L<EVP_DigestSign(3)> and L<EVP_DigestVerify(3)>.
See also L<EVP_SIGNATURE-RSA(7)>, L<EVP_SIGNATURE-DSA(7)>,
L<EVP_SIGNATURE-ECDSA(7)> and L<EVP_SIGNATURE-ED25519(7)>.

=head4 Deprecated low-level MAC functions

Low-level mac functions such as L<CMAC_Init(3)> are deprecated.
Applications should instead use the new L<EVP_MAC(3)> interface, using
L<EVP_MAC_CTX_new(3)>, L<EVP_MAC_CTX_free(3)>, L<EVP_MAC_init(3)>,
L<EVP_MAC_update(3)> and L<EVP_MAC_final(3)> or the single-shot MAC function
L<EVP_Q_mac(3)>.
See L<EVP_MAC(3)>, L<EVP_MAC-HMAC(7)>, L<EVP_MAC-CMAC(7)>, L<EVP_MAC-GMAC(7)>,
L<EVP_MAC-KMAC(7)>, L<EVP_MAC-BLAKE2(7)>, L<EVP_MAC-Poly1305(7)> and
L<EVP_MAC-Siphash(7)> for additional information.

Note that the one-shot method HMAC() is still available for compatibility purposes,
but this can also be replaced by using EVP_Q_MAC if a library context is required.

=head4 Deprecated low-level validation functions

Low-level validation functions such as L<DH_check(3)> have been informally
discouraged from use for a long time. Applications should instead use the high-level
EVP_PKEY APIs such as L<EVP_PKEY_check(3)>, L<EVP_PKEY_param_check(3)>,
L<EVP_PKEY_param_check_quick(3)>, L<EVP_PKEY_public_check(3)>,
L<EVP_PKEY_public_check_quick(3)>, L<EVP_PKEY_private_check(3)>,
and L<EVP_PKEY_pairwise_check(3)>.

=head4 Deprecated low-level key exchange functions

Many low-level functions have been informally discouraged from use for a long
time. Applications should instead use L<EVP_PKEY_derive(3)>.
See L<EVP_KEYEXCH-DH(7)>, L<EVP_KEYEXCH-ECDH(7)> and L<EVP_KEYEXCH-X25519(7)>.

=head4 Deprecated low-level key generation functions

Many low-level functions have been informally discouraged from use for a long
time. Applications should instead use L<EVP_PKEY_keygen_init(3)> and
L<EVP_PKEY_generate(3)> as described in L<EVP_PKEY-DSA(7)>, L<EVP_PKEY-DH(7)>,
L<EVP_PKEY-RSA(7)>, L<EVP_PKEY-EC(7)> and L<EVP_PKEY-X25519(7)>.
The 'quick' one-shot function L<EVP_PKEY_Q_keygen(3)> and macros for the most
common cases: <EVP_RSA_gen(3)> and L<EVP_EC_gen(3)> may also be used.

=head4 Deprecated low-level key reading and writing functions

Use of low-level objects (such as DSA) has been informally discouraged from use
for a long time. Functions to read and write these low-level objects (such as
PEM_read_DSA_PUBKEY()) should be replaced. Applications should instead use
L<OSSL_ENCODER_to_bio(3)> and L<OSSL_DECODER_from_bio(3)>.

=head4 Deprecated low-level key printing functions

Use of low-level objects (such as DSA) has been informally discouraged from use
for a long time. Functions to print these low-level objects such as
DSA_print() should be replaced with the equivalent EVP_PKEY functions.
Application should use one of L<EVP_PKEY_print_public(3)>,
L<EVP_PKEY_print_private(3)>, L<EVP_PKEY_print_params(3)>,
L<EVP_PKEY_print_public_fp(3)>, L<EVP_PKEY_print_private_fp(3)> or
L<EVP_PKEY_print_params_fp(3)>. Note that internally these use
L<OSSL_ENCODER_to_bio(3)> and L<OSSL_DECODER_from_bio(3)>.

=head3 Deprecated function mappings

The following functions have been deprecated in 3.0.

=over 4

=item *

AES_bi_ige_encrypt() and AES_ige_encrypt()

There is no replacement for the IGE functions. New code should not use these modes.
These undocumented functions were never integrated into the EVP layer.
They implemented the AES Infinite Garble Extension (IGE) mode and AES
Bi-directional IGE mode. These modes were never formally standardised and
usage of these functions is believed to be very small. In particular
AES_bi_ige_encrypt() has a known bug. It accepts 2 AES keys, but only one
is ever used. The security implications are believed to be minimal, but
this issue was never fixed for backwards compatibility reasons.

=item *

AES_encrypt(), AES_decrypt(), AES_set_encrypt_key(), AES_set_decrypt_key(),
AES_cbc_encrypt(), AES_cfb128_encrypt(), AES_cfb1_encrypt(), AES_cfb8_encrypt(),
AES_ecb_encrypt(), AES_ofb128_encrypt()

=item *

AES_unwrap_key(), AES_wrap_key()

See L</Deprecated low-level encryption functions>

=item *

AES_options()

There is no replacement. It returned a string indicating if the AES code was unrolled.

=item *

ASN1_digest(), ASN1_sign(), ASN1_verify()

There are no replacements. These old functions are not used, and could be
disabled with the macro NO_ASN1_OLD since OpenSSL 0.9.7.

=item *

ASN1_STRING_length_set()

Use L<ASN1_STRING_set(3)> or L<ASN1_STRING_set0(3)> instead.
This was a potentially unsafe function that could change the bounds of a
previously passed in pointer.

=item *

BF_encrypt(), BF_decrypt(), BF_set_key(), BF_cbc_encrypt(), BF_cfb64_encrypt(),
BF_ecb_encrypt(), BF_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
The Blowfish algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

BF_options()

There is no replacement. This option returned a constant string.

=item *

BIO_get_callback(), BIO_set_callback(), BIO_debug_callback()

Use the respective non-deprecated _ex() functions.

=item *

BN_is_prime_ex(), BN_is_prime_fasttest_ex()

Use L<BN_check_prime(3)> which avoids possible misuse and always uses at least
64 rounds of the Miller-Rabin primality test.

=item *

BN_pseudo_rand(), BN_pseudo_rand_range()

Use L<BN_rand(3)> and L<BN_rand_range(3)>.

=item *

BN_X931_derive_prime_ex(), BN_X931_generate_prime_ex(), BN_X931_generate_Xpq()

There are no replacements for these low-level functions. They were used internally
by RSA_X931_derive_ex() and RSA_X931_generate_key_ex() which are also deprecated.
Use L<EVP_PKEY_keygen(3)> instead.

=item *

Camellia_encrypt(), Camellia_decrypt(), Camellia_set_key(),
Camellia_cbc_encrypt(), Camellia_cfb128_encrypt(), Camellia_cfb1_encrypt(),
Camellia_cfb8_encrypt(), Camellia_ctr128_encrypt(), Camellia_ecb_encrypt(),
Camellia_ofb128_encrypt()

See L</Deprecated low-level encryption functions>.

=item *

CAST_encrypt(), CAST_decrypt(), CAST_set_key(), CAST_cbc_encrypt(),
CAST_cfb64_encrypt(), CAST_ecb_encrypt(), CAST_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
The CAST algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

CMAC_CTX_new(), CMAC_CTX_cleanup(), CMAC_CTX_copy(), CMAC_CTX_free(),
CMAC_CTX_get0_cipher_ctx()

See L</Deprecated low-level MAC functions>.

=item *

CMAC_Init(), CMAC_Update(), CMAC_Final(), CMAC_resume()

See L</Deprecated low-level MAC functions>.

=item *

CRYPTO_mem_ctrl(), CRYPTO_mem_debug_free(), CRYPTO_mem_debug_malloc(),
CRYPTO_mem_debug_pop(), CRYPTO_mem_debug_push(), CRYPTO_mem_debug_realloc(),
CRYPTO_mem_leaks(), CRYPTO_mem_leaks_cb(), CRYPTO_mem_leaks_fp(),
CRYPTO_set_mem_debug()

Memory-leak checking has been deprecated in favor of more modern development
tools, such as compiler memory and leak sanitizers or Valgrind.

=item *

CRYPTO_cts128_encrypt_block(), CRYPTO_cts128_encrypt(),
CRYPTO_cts128_decrypt_block(), CRYPTO_cts128_decrypt(),
CRYPTO_nistcts128_encrypt_block(), CRYPTO_nistcts128_encrypt(),
CRYPTO_nistcts128_decrypt_block(), CRYPTO_nistcts128_decrypt()

Use the higher level functions EVP_CipherInit_ex2(), EVP_CipherUpdate() and
EVP_CipherFinal_ex() instead.
See the "cts_mode" parameter in
L<EVP_EncryptInit(3)/Gettable and Settable EVP_CIPHER_CTX parameters>.
See L<EVP_EncryptInit(3)/EXAMPLES> for a AES-256-CBC-CTS example.

=item *

d2i_DHparams(), d2i_DHxparams(), d2i_DSAparams(), d2i_DSAPrivateKey(),
d2i_DSAPrivateKey_bio(), d2i_DSAPrivateKey_fp(), d2i_DSA_PUBKEY(),
d2i_DSA_PUBKEY_bio(), d2i_DSA_PUBKEY_fp(), d2i_DSAPublicKey(),
d2i_ECParameters(), d2i_ECPrivateKey(), d2i_ECPrivateKey_bio(),
d2i_ECPrivateKey_fp(), d2i_EC_PUBKEY(), d2i_EC_PUBKEY_bio(),
d2i_EC_PUBKEY_fp(), o2i_ECPublicKey(), d2i_RSAPrivateKey(),
d2i_RSAPrivateKey_bio(), d2i_RSAPrivateKey_fp(), d2i_RSA_PUBKEY(),
d2i_RSA_PUBKEY_bio(), d2i_RSA_PUBKEY_fp(), d2i_RSAPublicKey(),
d2i_RSAPublicKey_bio(), d2i_RSAPublicKey_fp()

See L</Deprecated i2d and d2i functions for low-level key types>

=item *

DES_crypt(), DES_fcrypt(), DES_encrypt1(), DES_encrypt2(), DES_encrypt3(),
DES_decrypt3(), DES_ede3_cbc_encrypt(), DES_ede3_cfb64_encrypt(),
DES_ede3_cfb_encrypt(),DES_ede3_ofb64_encrypt(),
DES_ecb_encrypt(), DES_ecb3_encrypt(), DES_ofb64_encrypt(), DES_ofb_encrypt(),
DES_cfb64_encrypt DES_cfb_encrypt(), DES_cbc_encrypt(), DES_ncbc_encrypt(),
DES_pcbc_encrypt(), DES_xcbc_encrypt(), DES_cbc_cksum(), DES_quad_cksum(),
DES_check_key_parity(), DES_is_weak_key(), DES_key_sched(), DES_options(),
DES_random_key(), DES_set_key(), DES_set_key_checked(), DES_set_key_unchecked(),
DES_set_odd_parity(), DES_string_to_2keys(), DES_string_to_key()

See L</Deprecated low-level encryption functions>.
Algorithms for "DESX-CBC", "DES-ECB", "DES-CBC", "DES-OFB", "DES-CFB",
"DES-CFB1" and "DES-CFB8" have been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

DH_bits(), DH_security_bits(), DH_size()

Use L<EVP_PKEY_get_bits(3)>, L<EVP_PKEY_get_security_bits(3)> and
L<EVP_PKEY_get_size(3)>.

=item *

DH_check(), DH_check_ex(), DH_check_params(), DH_check_params_ex(),
DH_check_pub_key(), DH_check_pub_key_ex()

See L</Deprecated low-level validation functions>

=item *

DH_clear_flags(), DH_test_flags(), DH_set_flags()

The B<DH_FLAG_CACHE_MONT_P> flag has been deprecated without replacement.
The B<DH_FLAG_TYPE_DH> and B<DH_FLAG_TYPE_DHX> have been deprecated.
Use EVP_PKEY_is_a() to determine the type of a key.
There is no replacement for setting these flags.

=item *

DH_compute_key() DH_compute_key_padded()

See L</Deprecated low-level key exchange functions>.

=item *

DH_new(), DH_new_by_nid(), DH_free(), DH_up_ref()

See L</Deprecated low-level object creation>

=item *

DH_generate_key(), DH_generate_parameters_ex()

See L</Deprecated low-level key generation functions>.

=item *

DH_get0_pqg(), DH_get0_p(), DH_get0_q(), DH_get0_g(), DH_get0_key(),
DH_get0_priv_key(), DH_get0_pub_key(), DH_get_length(), DH_get_nid()

See L</Deprecated low-level key parameter getters>

=item *

DH_get_1024_160(), DH_get_2048_224(), DH_get_2048_256()

Applications should instead set the B<OSSL_PKEY_PARAM_GROUP_NAME> as specified in
L<EVP_PKEY-DH(7)/DH parameters>) to one of "dh_1024_160", "dh_2048_224" or
"dh_2048_256" when generating a DH key.

=item *

DH_KDF_X9_42()

Applications should use L<EVP_PKEY_CTX_set_dh_kdf_type(3)> instead.

=item *

DH_get_default_method(), DH_get0_engine(), DH_meth_*(), DH_new_method(),
DH_OpenSSL(), DH_get_ex_data(), DH_set_default_method(), DH_set_method(),
DH_set_ex_data()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

DHparams_print(), DHparams_print_fp()

See L</Deprecated low-level key printing functions>

=item *

DH_set0_key(), DH_set0_pqg(), DH_set_length()

See L</Deprecated low-level key parameter setters>

=item *

DSA_bits(), DSA_security_bits(), DSA_size()

Use L<EVP_PKEY_get_bits(3)>, L<EVP_PKEY_get_security_bits(3)> and
L<EVP_PKEY_get_size(3)>.

=item *

DHparams_dup(), DSA_dup_DH()

There is no direct replacement. Applications may use L<EVP_PKEY_copy_parameters(3)>
and L<EVP_PKEY_dup(3)> instead.

=item *

DSA_generate_key(), DSA_generate_parameters_ex()

See L</Deprecated low-level key generation functions>.

=item *

DSA_get0_engine(), DSA_get_default_method(), DSA_get_ex_data(),
DSA_get_method(), DSA_meth_*(), DSA_new_method(), DSA_OpenSSL(),
DSA_set_default_method(), DSA_set_ex_data(), DSA_set_method()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

DSA_get0_p(), DSA_get0_q(), DSA_get0_g(), DSA_get0_pqg(), DSA_get0_key(),
DSA_get0_priv_key(), DSA_get0_pub_key()

See L</Deprecated low-level key parameter getters>.

=item *

DSA_new(), DSA_free(), DSA_up_ref()

See L</Deprecated low-level object creation>

=item *

DSAparams_dup()

There is no direct replacement. Applications may use L<EVP_PKEY_copy_parameters(3)>
and L<EVP_PKEY_dup(3)> instead.

=item *

DSAparams_print(), DSAparams_print_fp(), DSA_print(), DSA_print_fp()

See L</Deprecated low-level key printing functions>

=item *

DSA_set0_key(), DSA_set0_pqg()

See L</Deprecated low-level key parameter setters>

=item *

DSA_set_flags(), DSA_clear_flags(), DSA_test_flags()

The B<DSA_FLAG_CACHE_MONT_P> flag has been deprecated without replacement.

=item *

DSA_sign(), DSA_do_sign(), DSA_sign_setup(), DSA_verify(), DSA_do_verify()

See L</Deprecated low-level signing functions>.

=item *

ECDH_compute_key()

See L</Deprecated low-level key exchange functions>.

=item *

ECDH_KDF_X9_62()

Applications may either set this using the helper function
L<EVP_PKEY_CTX_set_ecdh_kdf_type(3)> or by setting an L<OSSL_PARAM(3)> using the
"kdf-type" as shown in L<EVP_KEYEXCH-ECDH(7)/EXAMPLES>

=item *

ECDSA_sign(), ECDSA_sign_ex(), ECDSA_sign_setup(), ECDSA_do_sign(),
ECDSA_do_sign_ex(), ECDSA_verify(), ECDSA_do_verify()

See L</Deprecated low-level signing functions>.

=item *

ECDSA_size()

Applications should use L<EVP_PKEY_get_size(3)>.

=item *

EC_GF2m_simple_method(), EC_GFp_mont_method(), EC_GFp_nist_method(),
EC_GFp_nistp224_method(), EC_GFp_nistp256_method(), EC_GFp_nistp521_method(),
EC_GFp_simple_method()

There are no replacements for these functions. Applications should rely on the
library automatically assigning a suitable method internally when an EC_GROUP
is constructed.

=item *

EC_GROUP_clear_free()

Use L<EC_GROUP_free(3)> instead.

=item *

EC_GROUP_get_curve_GF2m(), EC_GROUP_get_curve_GFp(), EC_GROUP_set_curve_GF2m(),
EC_GROUP_set_curve_GFp()

Applications should use L<EC_GROUP_get_curve(3)> and L<EC_GROUP_set_curve(3)>.

=item *

EC_GROUP_have_precompute_mult(), EC_GROUP_precompute_mult(),
EC_KEY_precompute_mult()

These functions are not widely used. Applications should instead switch to
named curves which OpenSSL has hardcoded lookup tables for.

=item *

EC_GROUP_new(), EC_GROUP_method_of(), EC_POINT_method_of()

EC_METHOD is now an internal-only concept and a suitable EC_METHOD is assigned
internally without application intervention.
Users of EC_GROUP_new() should switch to a different suitable constructor.

=item *

EC_KEY_can_sign()

Applications should use L<EVP_PKEY_can_sign(3)> instead.

=item *

EC_KEY_check_key()

See L</Deprecated low-level validation functions>

=item *

EC_KEY_set_flags(), EC_KEY_get_flags(), EC_KEY_clear_flags()

See L<EVP_PKEY-EC(7)/Common EC parameters> which handles flags as seperate
parameters for B<OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT>,
B<OSSL_PKEY_PARAM_EC_GROUP_CHECK_TYPE>, B<OSSL_PKEY_PARAM_EC_ENCODING>,
B<OSSL_PKEY_PARAM_USE_COFACTOR_ECDH> and
B<OSSL_PKEY_PARAM_EC_INCLUDE_PUBLIC>.
See also L<EVP_PKEY-EC(7)/EXAMPLES>

=item *

EC_KEY_dup(), EC_KEY_copy()

There is no direct replacement. Applications may use L<EVP_PKEY_copy_parameters(3)>
and L<EVP_PKEY_dup(3)> instead.

=item *

EC_KEY_decoded_from_explicit_params()

There is no replacement.

=item *

EC_KEY_generate_key()

See L</Deprecated low-level key generation functions>.

=item *

EC_KEY_get0_group(), EC_KEY_get0_private_key(), EC_KEY_get0_public_key(),
EC_KEY_get_conv_form(), EC_KEY_get_enc_flags()

See L</Deprecated low-level key parameter getters>.

=item *

EC_KEY_get0_engine(), EC_KEY_get_default_method(), EC_KEY_get_method(),
EC_KEY_new_method(), EC_KEY_get_ex_data(), EC_KEY_OpenSSL(),
EC_KEY_set_ex_data(), EC_KEY_set_default_method(), EC_KEY_METHOD_*(),
EC_KEY_set_method()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

EC_METHOD_get_field_type()

Use L<EC_GROUP_get_field_type(3)> instead.
See L</Providers are a replacement for engines and low-level method overrides>

=item *

EC_KEY_key2buf(), EC_KEY_oct2key(), EC_KEY_oct2priv(), EC_KEY_priv2buf(),
EC_KEY_priv2oct()

There are no replacements for these.

=item *

EC_KEY_new(), EC_KEY_new_by_curve_name(), EC_KEY_free(), EC_KEY_up_ref()

See L</Deprecated low-level object creation>

=item *

EC_KEY_print(), EC_KEY_print_fp()

See L</Deprecated low-level key printing functions>

=item *

EC_KEY_set_asn1_flag(), EC_KEY_set_conv_form(), EC_KEY_set_enc_flags()

See L</Deprecated low-level key parameter setters>.

=item *

EC_KEY_set_group(), EC_KEY_set_private_key(), EC_KEY_set_public_key(),
EC_KEY_set_public_key_affine_coordinates()

See L</Deprecated low-level key parameter setters>.

=item *

ECParameters_print(), ECParameters_print_fp(), ECPKParameters_print(),
ECPKParameters_print_fp()

See L</Deprecated low-level key printing functions>

=item *

EC_POINT_bn2point(), EC_POINT_point2bn()

These functions were not particularly useful, since EC point serialization
formats are not individual big-endian integers.

=item *

EC_POINT_get_affine_coordinates_GF2m(), EC_POINT_get_affine_coordinates_GFp(),
EC_POINT_set_affine_coordinates_GF2m(), EC_POINT_set_affine_coordinates_GFp()

Applications should use L<EC_POINT_get_affine_coordinates(3)> and
L<EC_POINT_set_affine_coordinates(3)> instead.

=item *

EC_POINT_get_Jprojective_coordinates_GFp(), EC_POINT_set_Jprojective_coordinates_GFp()

These functions are not widely used. Applications should instead use the
L<EC_POINT_set_affine_coordinates(3)> and L<EC_POINT_get_affine_coordinates(3)>
functions.

=item *

EC_POINT_make_affine(), EC_POINTs_make_affine()

There is no replacement. These functions were not widely used, and OpenSSL
automatically performs this conversion when needed.

=item *

EC_POINT_set_compressed_coordinates_GF2m(), EC_POINT_set_compressed_coordinates_GFp()

Applications should use L<EC_POINT_set_compressed_coordinates(3)> instead.

=item *

EC_POINTs_mul()

This function is not widely used. Applications should instead use the
L<EC_POINT_mul(3)> function.

=item *

B<ENGINE_*()>

All engine functions are deprecated. An engine should be rewritten as a provider.
See L</Providers are a replacement for engines and low-level method overrides>.

=item *

B<ERR_load_*()>, ERR_func_error_string(), ERR_get_error_line(),
ERR_get_error_line_data(), ERR_get_state()

OpenSSL now loads error strings automatically so these functions are not needed.

=item *

ERR_peek_error_line_data(), ERR_peek_last_error_line_data()

The new functions are L<ERR_peek_error_func(3)>, L<ERR_peek_last_error_func(3)>,
L<ERR_peek_error_data(3)>, L<ERR_peek_last_error_data(3)>, L<ERR_get_error_all(3)>,
L<ERR_peek_error_all(3)> and L<ERR_peek_last_error_all(3)>.
Applications should use L<ERR_get_error_all(3)>, or pick information
with ERR_peek functions and finish off with getting the error code by using
L<ERR_get_error(3)>.

=item *

EVP_CIPHER_CTX_iv(), EVP_CIPHER_CTX_iv_noconst(), EVP_CIPHER_CTX_original_iv()

Applications should instead use L<EVP_CIPHER_CTX_get_updated_iv(3)>,
L<EVP_CIPHER_CTX_get_updated_iv(3)> and L<EVP_CIPHER_CTX_get_original_iv(3)>
respectively.
See L<EVP_CIPHER_CTX_get_original_iv(3)> for further information.

=item *

B<EVP_CIPHER_meth_*()>, EVP_MD_CTX_set_update_fn(), EVP_MD_CTX_update_fn(),
B<EVP_MD_meth_*()>

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

EVP_PKEY_CTRL_PKCS7_ENCRYPT(), EVP_PKEY_CTRL_PKCS7_DECRYPT(),
EVP_PKEY_CTRL_PKCS7_SIGN(), EVP_PKEY_CTRL_CMS_ENCRYPT(),
EVP_PKEY_CTRL_CMS_DECRYPT(), and EVP_PKEY_CTRL_CMS_SIGN()

These control operations are not invoked by the OpenSSL library anymore and
are replaced by direct checks of the key operation against the key type
when the operation is initialized.

=item *

EVP_PKEY_CTX_get0_dh_kdf_ukm(), EVP_PKEY_CTX_get0_ecdh_kdf_ukm()

See the "kdf-ukm" item in L<EVP_KEYEXCH-DH(7)/DH key exchange parameters> and
L<EVP_KEYEXCH-ECDH(7)/ECDH Key Exchange parameters>.
These functions are obsolete and should not be required.

=item *

EVP_PKEY_CTX_set_rsa_keygen_pubexp()

Applications should use L<EVP_PKEY_CTX_set1_rsa_keygen_pubexp(3)> instead.

=item *

EVP_PKEY_cmp(), EVP_PKEY_cmp_parameters()

Applications should use L<EVP_PKEY_eq(3)> and L<EVP_PKEY_parameters_eq(3)> instead.
See L<EVP_PKEY_copy_parameters(3)> for further details.

=item *

EVP_PKEY_encrypt_old(), EVP_PKEY_decrypt_old(),

Applications should use L<EVP_PKEY_encrypt_init(3)> and L<EVP_PKEY_encrypt(3)> or
L<EVP_PKEY_decrypt_init(3)> and L<EVP_PKEY_decrypt(3)> instead.

=item *

EVP_PKEY_get0()

This function returns NULL if the key comes from a provider.

=item *

EVP_PKEY_get0_DH(), EVP_PKEY_get0_DSA(), EVP_PKEY_get0_EC_KEY(), EVP_PKEY_get0_RSA(),
EVP_PKEY_get1_DH(), EVP_PKEY_get1_DSA(), EVP_PKEY_get1_EC_KEY and EVP_PKEY_get1_RSA(),
EVP_PKEY_get0_hmac(), EVP_PKEY_get0_poly1305(), EVP_PKEY_get0_siphash()

See L</Functions that return an internal key should be treated as read only>.

=item *

B<EVP_PKEY_meth_*()>

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

EVP_PKEY_new_CMAC_key()

See L</Deprecated low-level MAC functions>.

=item *

EVP_PKEY_assign(), EVP_PKEY_set1_DH(), EVP_PKEY_set1_DSA(),
EVP_PKEY_set1_EC_KEY(), EVP_PKEY_set1_RSA()

See L</Deprecated low-level key object getters and setters>

=item *

EVP_PKEY_set1_tls_encodedpoint() EVP_PKEY_get1_tls_encodedpoint()

These functions were previously used by libssl to set or get an encoded public
key into/from an EVP_PKEY object. With OpenSSL 3.0 these are replaced by the more
generic functions L<EVP_PKEY_set1_encoded_public_key(3)> and
L<EVP_PKEY_get1_encoded_public_key(3)>.
The old versions have been converted to deprecated macros that just call the
new functions.

=item *

EVP_PKEY_set1_engine(), EVP_PKEY_get0_engine()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

EVP_PKEY_set_alias_type()

This function has been removed. There is no replacement.
See L</EVP_PKEY_set_alias_type() method has been removed>

=item *

HMAC_Init_ex(), HMAC_Update(), HMAC_Final(), HMAC_size()

See L</Deprecated low-level MAC functions>.

=item *

HMAC_CTX_new(), HMAC_CTX_free(), HMAC_CTX_copy(), HMAC_CTX_reset(),
HMAC_CTX_set_flags(), HMAC_CTX_get_md()

See L</Deprecated low-level MAC functions>.

=item *

i2d_DHparams(), i2d_DHxparams()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

i2d_DSAparams(), i2d_DSAPrivateKey(), i2d_DSAPrivateKey_bio(),
i2d_DSAPrivateKey_fp(), i2d_DSA_PUBKEY(), i2d_DSA_PUBKEY_bio(),
i2d_DSA_PUBKEY_fp(), i2d_DSAPublicKey()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

i2d_ECParameters(), i2d_ECPrivateKey(), i2d_ECPrivateKey_bio(),
i2d_ECPrivateKey_fp(), i2d_EC_PUBKEY(), i2d_EC_PUBKEY_bio(),
i2d_EC_PUBKEY_fp(), i2o_ECPublicKey()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

i2d_RSAPrivateKey(), i2d_RSAPrivateKey_bio(), i2d_RSAPrivateKey_fp(),
i2d_RSA_PUBKEY(), i2d_RSA_PUBKEY_bio(), i2d_RSA_PUBKEY_fp(),
i2d_RSAPublicKey(), i2d_RSAPublicKey_bio(), i2d_RSAPublicKey_fp()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

IDEA_encrypt(), IDEA_set_decrypt_key(), IDEA_set_encrypt_key(),
IDEA_cbc_encrypt(), IDEA_cfb64_encrypt(), IDEA_ecb_encrypt(),
IDEA_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
IDEA has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

IDEA_options()

There is no replacement. This function returned a constant string.

=item *

MD2(), MD2_Init(), MD2_Update(), MD2_Final()

See L</Deprecated low-level encryption functions>.
MD2 has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

MD2_options()

There is no replacement. This function returned a constant string.

=item *

MD4(), MD4_Init(), MD4_Update(), MD4_Final(), MD4_Transform()

See L</Deprecated low-level encryption functions>.
MD4 has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

MDC2(), MDC2_Init(), MDC2_Update(), MDC2_Final()

See L</Deprecated low-level encryption functions>.
MDC2 has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

MD5(), MD5_Init(), MD5_Update(), MD5_Final(), MD5_Transform()

See L</Deprecated low-level encryption functions>.

=item *

NCONF_WIN32()

This undocumented function has no replacement.
See L<config(5)/HISTORY> for more details.

=item *

OCSP_parse_url()

Use L<OSSL_HTTP_parse_url(3)> instead.

=item *

B<OCSP_REQ_CTX> type and B<OCSP_REQ_CTX_*()> functions

These methods were used to collect all necessary data to form a HTTP request,
and to perform the HTTP transfer with that request.  With OpenSSL 3.0, the
type is B<OSSL_HTTP_REQ_CTX>, and the deprecated functions are replaced
with B<OSSL_HTTP_REQ_CTX_*()>. See L<OSSL_HTTP_REQ_CTX(3)> for additional
details.

=item *

OPENSSL_fork_child(), OPENSSL_fork_parent(), OPENSSL_fork_prepare()

There is no replacement for these functions. These pthread fork support methods
were unused by OpenSSL.

=item *

OSSL_STORE_ctrl(), OSSL_STORE_do_all_loaders(), OSSL_STORE_LOADER_get0_engine(),
OSSL_STORE_LOADER_get0_scheme(), OSSL_STORE_LOADER_new(),
OSSL_STORE_LOADER_set_attach(), OSSL_STORE_LOADER_set_close(),
OSSL_STORE_LOADER_set_ctrl(), OSSL_STORE_LOADER_set_eof(),
OSSL_STORE_LOADER_set_error(), OSSL_STORE_LOADER_set_expect(),
OSSL_STORE_LOADER_set_find(), OSSL_STORE_LOADER_set_load(),
OSSL_STORE_LOADER_set_open(), OSSL_STORE_LOADER_set_open_ex(),
OSSL_STORE_register_loader(), OSSL_STORE_unregister_loader(),
OSSL_STORE_vctrl()

These functions helped applications and engines create loaders for
schemes they supported.  These are all deprecated and discouraged in favour of
provider implementations, see L<provider-storemgmt(7)>.

=item *

PEM_read_DHparams(), PEM_read_bio_DHparams(),
PEM_read_DSAparams(), PEM_read_bio_DSAparams(),
PEM_read_DSAPrivateKey(), PEM_read_DSA_PUBKEY(),
PEM_read_bio_DSAPrivateKey and PEM_read_bio_DSA_PUBKEY(),
PEM_read_ECPKParameters(), PEM_read_ECPrivateKey(), PEM_read_EC_PUBKEY(),
PEM_read_bio_ECPKParameters(), PEM_read_bio_ECPrivateKey(), PEM_read_bio_EC_PUBKEY(),
PEM_read_RSAPrivateKey(), PEM_read_RSA_PUBKEY(), PEM_read_RSAPublicKey(),
PEM_read_bio_RSAPrivateKey(), PEM_read_bio_RSA_PUBKEY(), PEM_read_bio_RSAPublicKey(),
PEM_write_bio_DHparams(), PEM_write_bio_DHxparams(), PEM_write_DHparams(), PEM_write_DHxparams(),
PEM_write_DSAparams(), PEM_write_DSAPrivateKey(), PEM_write_DSA_PUBKEY(),
PEM_write_bio_DSAparams(), PEM_write_bio_DSAPrivateKey(), PEM_write_bio_DSA_PUBKEY(),
PEM_write_ECPKParameters(), PEM_write_ECPrivateKey(), PEM_write_EC_PUBKEY(),
PEM_write_bio_ECPKParameters(), PEM_write_bio_ECPrivateKey(), PEM_write_bio_EC_PUBKEY(),
PEM_write_RSAPrivateKey(), PEM_write_RSA_PUBKEY(), PEM_write_RSAPublicKey(),
PEM_write_bio_RSAPrivateKey(), PEM_write_bio_RSA_PUBKEY(),
PEM_write_bio_RSAPublicKey(),

See L</Deprecated low-level key reading and writing functions>

=item *

PKCS1_MGF1()

See L</Deprecated low-level encryption functions>.

=item *

RAND_get_rand_method(), RAND_set_rand_method(), RAND_OpenSSL(),
RAND_set_rand_engine()

Applications should instead use L<RAND_set_DRBG_type(3)>,
L<EVP_RAND(3)> and L<EVP_RAND(7)>.
See L<RAND_set_rand_method(3)> for more details.

=item *

RC2_encrypt(), RC2_decrypt(), RC2_set_key(), RC2_cbc_encrypt(), RC2_cfb64_encrypt(),
RC2_ecb_encrypt(), RC2_ofb64_encrypt(),
RC4(), RC4_set_key(), RC4_options(),
RC5_32_encrypt(), RC5_32_set_key(), RC5_32_decrypt(), RC5_32_cbc_encrypt(),
RC5_32_cfb64_encrypt(), RC5_32_ecb_encrypt(), RC5_32_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
The Algorithms "RC2", "RC4" and "RC5" have been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

RIPEMD160(), RIPEMD160_Init(), RIPEMD160_Update(), RIPEMD160_Final(),
RIPEMD160_Transform()

See L</Deprecated low-level digest functions>.
The RIPE algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

RSA_bits(), RSA_security_bits(), RSA_size()

Use L<EVP_PKEY_get_bits(3)>, L<EVP_PKEY_get_security_bits(3)> and
L<EVP_PKEY_get_size(3)>.

=item *

RSA_check_key(), RSA_check_key_ex()

See L</Deprecated low-level validation functions>

=item *

RSA_clear_flags(), RSA_flags(), RSA_set_flags(), RSA_test_flags(),
RSA_setup_blinding(), RSA_blinding_off(), RSA_blinding_on()

All of these RSA flags have been deprecated without replacement:

B<RSA_FLAG_BLINDING>, B<RSA_FLAG_CACHE_PRIVATE>, B<RSA_FLAG_CACHE_PUBLIC>,
B<RSA_FLAG_EXT_PKEY>, B<RSA_FLAG_NO_BLINDING>, B<RSA_FLAG_THREAD_SAFE>
B<RSA_METHOD_FLAG_NO_CHECK>

=item *

RSA_generate_key_ex(), RSA_generate_multi_prime_key()

See L</Deprecated low-level key generation functions>.

=item *

RSA_get0_engine()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

RSA_get0_crt_params(), RSA_get0_d(), RSA_get0_dmp1(), RSA_get0_dmq1(),
RSA_get0_e(), RSA_get0_factors(), RSA_get0_iqmp(), RSA_get0_key(),
RSA_get0_multi_prime_crt_params(), RSA_get0_multi_prime_factors(), RSA_get0_n(),
RSA_get0_p(), RSA_get0_pss_params(), RSA_get0_q(),
RSA_get_multi_prime_extra_count()

See L</Deprecated low-level key parameter getters>

=item *

RSA_new(), RSA_free(), RSA_up_ref()

See L</Deprecated low-level object creation>.

=item *

RSA_get_default_method(), RSA_get_ex_data and RSA_get_method()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

RSA_get_version()

There is no replacement.

=item *

B<RSA_meth_*()>, RSA_new_method(), RSA_null_method and RSA_PKCS1_OpenSSL()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

B<RSA_padding_add_*()>, B<RSA_padding_check_*()>

See L</Deprecated low-level signing functions> and
L</Deprecated low-level encryption functions>.

=item *

RSA_print(), RSA_print_fp()

See L</Deprecated low-level key printing functions>

=item *

RSA_public_encrypt(), RSA_private_decrypt()

See L</Deprecated low-level encryption functions>

=item *

RSA_private_encrypt(), RSA_public_decrypt()

This is equivalent to doing sign and verify recover operations (with a padding
mode of none). See L</Deprecated low-level signing functions>.

=item *

RSAPrivateKey_dup(), RSAPublicKey_dup()

There is no direct replacement. Applications may use L<EVP_PKEY_dup(3)>.

=item *

RSAPublicKey_it(), RSAPrivateKey_it()

See L</Deprecated low-level key reading and writing functions>

=item *

RSA_set0_crt_params(), RSA_set0_factors(), RSA_set0_key(),
RSA_set0_multi_prime_params()

See L</Deprecated low-level key parameter setters>.

=item *

RSA_set_default_method(), RSA_set_method(), RSA_set_ex_data()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

RSA_sign(), RSA_sign_ASN1_OCTET_STRING(), RSA_verify(),
RSA_verify_ASN1_OCTET_STRING(), RSA_verify_PKCS1_PSS(),
RSA_verify_PKCS1_PSS_mgf1()

See L</Deprecated low-level signing functions>.

=item *

RSA_X931_derive_ex(), RSA_X931_generate_key_ex(), RSA_X931_hash_id()

There are no replacements for these functions.
X931 padding can be set using L<EVP_SIGNATURE-RSA(7)/Signature Parameters>.
See B<OSSL_SIGNATURE_PARAM_PAD_MODE>.

=item *

SEED_encrypt(), SEED_decrypt(), SEED_set_key(), SEED_cbc_encrypt(),
SEED_cfb128_encrypt(), SEED_ecb_encrypt(), SEED_ofb128_encrypt()

See L</Deprecated low-level encryption functions>.
The SEED algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

SHA1_Init(), SHA1_Update(), SHA1_Final(), SHA1_Transform(),
SHA224_Init(), SHA224_Update(), SHA224_Final(),
SHA256_Init(), SHA256_Update(), SHA256_Final(), SHA256_Transform(),
SHA384_Init(), SHA384_Update(), SHA384_Final(),
SHA512_Init(), SHA512_Update(), SHA512_Final(), SHA512_Transform()

See L</Deprecated low-level digest functions>.

=item *

SRP_Calc_A(), SRP_Calc_B(), SRP_Calc_client_key(), SRP_Calc_server_key(),
SRP_Calc_u(), SRP_Calc_x(), SRP_check_known_gN_param(), SRP_create_verifier(),
SRP_create_verifier_BN(), SRP_get_default_gN(), SRP_user_pwd_free(), SRP_user_pwd_new(),
SRP_user_pwd_set0_sv(), SRP_user_pwd_set1_ids(), SRP_user_pwd_set_gN(),
SRP_VBASE_add0_user(), SRP_VBASE_free(), SRP_VBASE_get1_by_user(), SRP_VBASE_init(),
SRP_VBASE_new(), SRP_Verify_A_mod_N(), SRP_Verify_B_mod_N()

There are no replacements for the SRP functions.

=item *

SSL_CTX_set_tmp_dh_callback(), SSL_set_tmp_dh_callback(),
SSL_CTX_set_tmp_dh(), SSL_set_tmp_dh()

These are used to set the Diffie-Hellman (DH) parameters that are to be used by
servers requiring ephemeral DH keys. Instead applications should consider using
the built-in DH parameters that are available by calling L<SSL_CTX_set_dh_auto(3)>
or L<SSL_set_dh_auto(3)>. If custom parameters are necessary then applications can
use the alternative functions L<SSL_CTX_set0_tmp_dh_pkey(3)> and
L<SSL_set0_tmp_dh_pkey(3)>. There is no direct replacement for the "callback"
functions. The callback was originally useful in order to have different
parameters for export and non-export ciphersuites. Export ciphersuites are no
longer supported by OpenSSL. Use of the callback functions should be replaced
by one of the other methods described above.

=item *

SSL_CTX_set_tlsext_ticket_key_cb()

Use the new L<SSL_CTX_set_tlsext_ticket_key_evp_cb(3)> function instead.

=item *

WHIRLPOOL(), WHIRLPOOL_Init(), WHIRLPOOL_Update(), WHIRLPOOL_Final(),
WHIRLPOOL_BitUpdate()

See L</Deprecated low-level digest functions>.
The Whirlpool algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

X509_certificate_type()

This was an undocumented function. Applications can use L<X509_get0_pubkey(3)>
and L<X509_get0_signature(3)> instead.

=item *

X509_http_nbio(), X509_CRL_http_nbio()

Use L<X509_load_http(3)> and L<X509_CRL_load_http(3)> instead.

=back

=head2 Using the FIPS Module in applications

See L<fips_module(7)> and L<OSSL_PROVIDER-FIPS(7)> for details.

=head2 OpenSSL command line application changes

=head3 New applications

L<B<openssl kdf>|openssl-kdf(1)> uses the new L<EVP_KDF(3)> API.
L<B<openssl kdf>|openssl-mac(1)> uses the new L<EVP_MAC(3)> API.

=head3 Added options

B<-provider_path> and B<-provider> are available to all apps and can be used
multiple times to load any providers, such as the 'legacy' provider or third
party providers. If used then the 'default' provider would also need to be
specified if required. The B<-provider_path> must be specified before the
B<-provider> option.

The B<list> app has many new options. See L<openssl-list(1)> for more
information.

B<-crl_lastupdate> and B<-crl_nextupdate> used by B<openssl ca> allows
explicit setting of fields in the generated CRL.

=head3 Removed options

Interactive mode is not longer available.

The B<-crypt> option used by B<openssl passwd>.
The B<-c> option used by B<openssl x509>, B<openssl dhparam>,
B<openssl dsaparam>, and B<openssl ecparam>.

=head3 Other Changes

The output of Command line applications may have minor changes.
These are primarily changes in capitalisation and white space.  However, in some
cases, there are additional differences.
For example, the DH parameters output from B<openssl dhparam> now lists 'P',
'Q', 'G' and 'pcounter' instead of 'prime', 'generator', 'subgroup order' and
'counter' respectively.

The B<openssl> commands that read keys, certificates, and CRLs now
automatically detect the PEM or DER format of the input files so it is not
necessary to explicitly specify the input format anymore. However if the
input format option is used the specified format will be required.

B<openssl speed> no longer uses low-level API calls.
This implies some of the performance numbers might not be comparable with the
previous releases due to higher overhead. This applies particularly to
measuring performance on smaller data chunks.

b<openssl dhparam>, B<openssl dsa>, B<openssl gendsa>, B<openssl dsaparam>,
B<openssl genrsa> and B<openssl rsa> have been modified to use PKEY APIs.
B<openssl genrsa> and B<openssl rsa> now write PKCS #8 keys by default.

=head3 Default settings

"SHA256" is now the default digest for TS query used by B<openssl ts>.

=head3 Deprecated apps

B<openssl rsautl> is deprecated, use B<openssl pkeyutl> instead.
B<openssl dhparam>, B<openssl dsa>, B<openssl gendsa>, B<openssl dsaparam>,
B<openssl genrsa>, B<openssl rsa>, B<openssl genrsa> and B<openssl rsa> are
now in maintenance mode and no new features will be added to them.

=head2 TLS Changes

=over 4

=item *

TLS 1.3 FFDHE key exchange support added

This uses DH safe prime named groups.

=item *

Support for fully "pluggable" TLSv1.3 groups.

This means that providers may supply their own group implementations (using
either the "key exchange" or the "key encapsulation" methods) which will
automatically be detected and used by libssl.

=item *

SSL and SSL_CTX options are now 64 bit instead of 32 bit.

The signatures of the functions to get and set options on SSL and
SSL_CTX objects changed from "unsigned long" to "uint64_t" type.

This may require source code changes. For example it is no longer possible
to use the B<SSL_OP_> macro values in preprocessor C<#if> conditions.
However it is still possible to test whether these macros are defined or not.

See L<SSL_CTX_get_options(3)>, L<SSL_CTX_set_options(3)>,
L<SSL_get_options(3)> and L<SSL_set_options(3)>.

=item *

SSL_set1_host() and SSL_add1_host() Changes

These functions now take IP literal addresses as well as actual hostnames.

=item *

Added SSL option SSL_OP_CLEANSE_PLAINTEXT

If the option is set, openssl cleanses (zeroizes) plaintext bytes from
internal buffers after delivering them to the application. Note,
the application is still responsible for cleansing other copies
(e.g.: data received by L<SSL_read(3)>).

=item *

Client-initiated renegotiation is disabled by default.

To allow it, use the B<-client_renegotiation> option,
the B<SSL_OP_ALLOW_CLIENT_RENEGOTIATION> flag, or the C<ClientRenegotiation>
config parameter as appropriate.

=item *

Secure renegotiation is now required by default for TLS connections

Support for RFC 5746 secure renegotiation is now required by default for
SSL or TLS connections to succeed.  Applications that require the ability
to connect to legacy peers will need to explicitly set
SSL_OP_LEGACY_SERVER_CONNECT.  Accordingly, SSL_OP_LEGACY_SERVER_CONNECT
is no longer set as part of SSL_OP_ALL.

=item *

Combining the Configure options no-ec and no-dh no longer disables TLSv1.3

Typically if OpenSSL has no EC or DH algorithms then it cannot support
connections with TLSv1.3. However OpenSSL now supports "pluggable" groups
through providers. Therefore third party providers may supply group
implementations even where there are no built-in ones. Attempting to create
TLS connections in such a build without also disabling TLSv1.3 at run time or
using third party provider groups may result in handshake failures. TLSv1.3
can be disabled at compile time using the "no-tls1_3" Configure option.

=item *

SSL_CTX_set_ciphersuites() and SSL_set_ciphersuites() changes.

The methods now ignore unknown ciphers.

=item *

Security callback change.

The security callback, which can be customised by application code, supports
the security operation SSL_SECOP_TMP_DH. This is defined to take an EVP_PKEY
in the "other" parameter. In most places this is what is passed. All these
places occur server side. However there was one client side call of this
security operation and it passed a DH object instead. This is incorrect
according to the definition of SSL_SECOP_TMP_DH, and is inconsistent with all
of the other locations. Therefore this client side call has been changed to
pass an EVP_PKEY instead.

=item *

New SSL option SSL_OP_IGNORE_UNEXPECTED_EOF

The SSL option SSL_OP_IGNORE_UNEXPECTED_EOF is introduced. If that option
is set, an unexpected EOF is ignored, it pretends a close notify was received
instead and so the returned error becomes SSL_ERROR_ZERO_RETURN.

=item *

The security strength of SHA1 and MD5 based signatures in TLS has been reduced.

This results in SSL 3, TLS 1.0, TLS 1.1 and DTLS 1.0 no longer
working at the default security level of 1 and instead requires security
level 0. The security level can be changed either using the cipher string
with C<@@SECLEVEL>, or calling L<SSL_CTX_set_security_level(3)>. This also means
that where the signature algorithms extension is missing from a ClientHello
then the handshake will fail in TLS 1.2 at security level 1. This is because,
although this extension is optional, failing to provide one means that
OpenSSL will fallback to a default set of signature algorithms. This default
set requires the availability of SHA1.

=item *

X509 certificates signed using SHA1 are no longer allowed at security level 1 and above.

In TLS/SSL the default security level is 1. It can be set either using the cipher
string with C<@@SECLEVEL>, or calling L<SSL_CTX_set_security_level(3)>. If the
leaf certificate is signed with SHA-1, a call to L<SSL_CTX_use_certificate(3)>
will fail if the security level is not lowered first.
Outside TLS/SSL, the default security level is -1 (effectively 0). It can
be set using L<X509_VERIFY_PARAM_set_auth_level(3)> or using the B<-auth_level>
options of the commands.

=back

=head1 SEE ALSO

L<fips_module(7)>

=head1 HISTORY

The migration guide was created for OpenSSL 3.0.

=head1 COPYRIGHT

Copyright 2021-2023 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the Apache License 2.0 (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut
@


1.1.1.1
log
@Import OpenSSL 3.0.8, last import was 1.1.1t

### Major changes between OpenSSL 3.0.7 and OpenSSL 3.0.8 [7 Feb 2023]

  * Fixed NULL dereference during PKCS7 data verification ([CVE-2023-0401])
  * Fixed X.400 address type confusion in X.509 GeneralName ([CVE-2023-0286])
  * Fixed NULL dereference validating DSA public key ([CVE-2023-0217])
  * Fixed Invalid pointer dereference in d2i_PKCS7 functions ([CVE-2023-0216])
  * Fixed Use-after-free following BIO_new_NDEF ([CVE-2023-0215])
  * Fixed Double free after calling PEM_read_bio_ex ([CVE-2022-4450])
  * Fixed Timing Oracle in RSA Decryption ([CVE-2022-4304])
  * Fixed X.509 Name Constraints Read Buffer Overflow ([CVE-2022-4203])
  * Fixed X.509 Policy Constraints Double Locking ([CVE-2022-3996])

### Major changes between OpenSSL 3.0.6 and OpenSSL 3.0.7 [1 Nov 2022]

  * Added RIPEMD160 to the default provider.
  * Fixed regressions introduced in 3.0.6 version.
  * Fixed two buffer overflows in punycode decoding functions.
    ([CVE-2022-3786]) and ([CVE-2022-3602])

### Major changes between OpenSSL 3.0.5 and OpenSSL 3.0.6 [11 Oct 2022]

  * Fix for custom ciphers to prevent accidental use of NULL encryption
    ([CVE-2022-3358])

### Major changes between OpenSSL 3.0.4 and OpenSSL 3.0.5 [5 Jul 2022]

  * Fixed heap memory corruption with RSA private key operation
    ([CVE-2022-2274])
  * Fixed AES OCB failure to encrypt some bytes on 32-bit x86 platforms
    ([CVE-2022-2097])

### Major changes between OpenSSL 3.0.3 and OpenSSL 3.0.4 [21 Jun 2022]

  * Fixed additional bugs in the c_rehash script which was not properly
    sanitising shell metacharacters to prevent command injection
    ([CVE-2022-2068])

### Major changes between OpenSSL 3.0.2 and OpenSSL 3.0.3 [3 May 2022]

  * Fixed a bug in the c_rehash script which was not properly sanitising shell
    metacharacters to prevent command injection ([CVE-2022-1292])
  * Fixed a bug in the function `OCSP_basic_verify` that verifies the signer
    certificate on an OCSP response ([CVE-2022-1343])
  * Fixed a bug where the RC4-MD5 ciphersuite incorrectly used the
    AAD data as the MAC key ([CVE-2022-1434])
  * Fix a bug in the OPENSSL_LH_flush() function that breaks reuse of the memory
    occuppied by the removed hash table entries ([CVE-2022-1473])

### Major changes between OpenSSL 3.0.1 and OpenSSL 3.0.2 [15 Mar 2022]

  * Fixed a bug in the BN_mod_sqrt() function that can cause it to loop forever
    for non-prime moduli ([CVE-2022-0778])

### Major changes between OpenSSL 3.0.0 and OpenSSL 3.0.1 [14 Dec 2021]

  * Fixed invalid handling of X509_verify_cert() internal errors in libssl
    ([CVE-2021-4044])
  * Allow fetching an operation from the provider that owns an unexportable key
    as a fallback if that is still allowed by the property query.

### Major changes between OpenSSL 1.1.1 and OpenSSL 3.0.0 [7 sep 2021]

  * Enhanced 'openssl list' with many new options.
  * Added migration guide to man7.
  * Implemented support for fully "pluggable" TLSv1.3 groups.
  * Added suport for Kernel TLS (KTLS).
  * Changed the license to the Apache License v2.0.
  * Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2,
    RC4, RC5, and DES to the legacy provider.
  * Moved the EVP digests MD2, MD4, MDC2, WHIRLPOOL and RIPEMD-160 to the legacy
    provider.
  * Added convenience functions for generating asymmetric key pairs.
  * Deprecated the `OCSP_REQ_CTX` type and functions.
  * Deprecated the `EC_KEY` and `EC_KEY_METHOD` types and functions.
  * Deprecated the `RSA` and `RSA_METHOD` types and functions.
  * Deprecated the `DSA` and `DSA_METHOD` types and functions.
  * Deprecated the `DH` and `DH_METHOD` types and functions.
  * Deprecated the `ERR_load_` functions.
  * Remove the `RAND_DRBG` API.
  * Deprecated the `ENGINE` API.
  * Added `OSSL_LIB_CTX`, a libcrypto library context.
  * Added various `_ex` functions to the OpenSSL API that support using
    a non-default `OSSL_LIB_CTX`.
  * Interactive mode is removed from the 'openssl' program.
  * The X25519, X448, Ed25519, Ed448, SHAKE128 and SHAKE256 algorithms are
    included in the FIPS provider.
  * X509 certificates signed using SHA1 are no longer allowed at security
    level 1 or higher. The default security level for TLS is 1, so
    certificates signed using SHA1 are by default no longer trusted to
    authenticate servers or clients.
  * enable-crypto-mdebug and enable-crypto-mdebug-backtrace were mostly
    disabled; the project uses address sanitize/leak-detect instead.
  * Added a Certificate Management Protocol (CMP, RFC 4210) implementation
    also covering CRMF (RFC 4211) and HTTP transfer (RFC 6712).
    It is part of the crypto lib and adds a 'cmp' app with a demo configuration.
    All widely used CMP features are supported for both clients and servers.
  * Added a proper HTTP client supporting GET with optional redirection, POST,
    arbitrary request and response content types, TLS, persistent connections,
    connections via HTTP(s) proxies, connections and exchange via user-defined
    BIOs (allowing implicit connections), and timeout checks.
  * Added util/check-format.pl for checking adherence to the coding guidelines.
  * Added OSSL_ENCODER, a generic encoder API.
  * Added OSSL_DECODER, a generic decoder API.
  * Added OSSL_PARAM_BLD, an easier to use API to OSSL_PARAM.
  * Added error raising macros, ERR_raise() and ERR_raise_data().
  * Deprecated ERR_put_error(), ERR_get_error_line(), ERR_get_error_line_data(),
    ERR_peek_error_line_data(), ERR_peek_last_error_line_data() and
    ERR_func_error_string().
  * Added OSSL_PROVIDER_available(), to check provider availibility.
  * Added 'openssl mac' that uses the EVP_MAC API.
  * Added 'openssl kdf' that uses the EVP_KDF API.
  * Add OPENSSL_info() and 'openssl info' to get built-in data.
  * Add support for enabling instrumentation through trace and debug
    output.
  * Changed our version number scheme and set the next major release to
    3.0.0
  * Added EVP_MAC, an EVP layer MAC API, and a generic EVP_PKEY to EVP_MAC
    bridge.  Supported MACs are: BLAKE2, CMAC, GMAC, HMAC, KMAC, POLY1305
    and SIPHASH.
  * Removed the heartbeat message in DTLS feature.
  * Added EVP_KDF, an EVP layer KDF and PRF API, and a generic EVP_PKEY to
    EVP_KDF bridge.  Supported KDFs are: HKDF, KBKDF, KRB5 KDF, PBKDF2,
    PKCS12 KDF, SCRYPT, SSH KDF, SSKDF, TLS1 PRF, X9.42 KDF and X9.63 KDF.
  * All of the low-level MD2, MD4, MD5, MDC2, RIPEMD160, SHA1, SHA224,
    SHA256, SHA384, SHA512 and Whirlpool digest functions have been
    deprecated.
  * All of the low-level AES, Blowfish, Camellia, CAST, DES, IDEA, RC2,
    RC4, RC5 and SEED cipher functions have been deprecated.
  * All of the low-level DH, DSA, ECDH, ECDSA and RSA public key functions
    have been deprecated.
  * SSL 3, TLS 1.0, TLS 1.1, and DTLS 1.0 only work at security level 0,
    except when RSA key exchange without SHA1 is used.
  * Added providers, a new pluggability concept that will replace the
    ENGINE API and ENGINE implementations.

OpenSSL 1.1.1
-------------

### Major changes between OpenSSL 1.1.1k and OpenSSL 1.1.1l [24 Aug 2021]

  * Fixed an SM2 Decryption Buffer Overflow ([CVE-2021-3711])
  * Fixed various read buffer overruns processing ASN.1 strings ([CVE-2021-3712])

### Major changes between OpenSSL 1.1.1j and OpenSSL 1.1.1k [25 Mar 2021]

  * Fixed a problem with verifying a certificate chain when using the
    X509_V_FLAG_X509_STRICT flag ([CVE-2021-3450])
  * Fixed an issue where an OpenSSL TLS server may crash if sent a maliciously
    crafted renegotiation ClientHello message from a client ([CVE-2021-3449])

### Major changes between OpenSSL 1.1.1i and OpenSSL 1.1.1j [16 Feb 2021]

  * Fixed a NULL pointer deref in the X509_issuer_and_serial_hash()
    function ([CVE-2021-23841])
  * Fixed the RSA_padding_check_SSLv23() function and the RSA_SSLV23_PADDING
    padding mode to correctly check for rollback attacks
  * Fixed an overflow in the EVP_CipherUpdate, EVP_EncryptUpdate and
    EVP_DecryptUpdate functions ([CVE-2021-23840])
  * Fixed SRP_Calc_client_key so that it runs in constant time

### Major changes between OpenSSL 1.1.1h and OpenSSL 1.1.1i [8 Dec 2020]

  * Fixed NULL pointer deref in GENERAL_NAME_cmp ([CVE-2020-1971])

### Major changes between OpenSSL 1.1.1g and OpenSSL 1.1.1h [22 Sep 2020]

  * Disallow explicit curve parameters in verifications chains when
    X509_V_FLAG_X509_STRICT is used
  * Enable 'MinProtocol' and 'MaxProtocol' to configure both TLS and DTLS
    contexts
  * Oracle Developer Studio will start reporting deprecation warnings

### Major changes between OpenSSL 1.1.1f and OpenSSL 1.1.1g [21 Apr 2020]

  * Fixed segmentation fault in SSL_check_chain() ([CVE-2020-1967])

### Major changes between OpenSSL 1.1.1e and OpenSSL 1.1.1f [31 Mar 2020]

  * Revert the unexpected EOF reporting via SSL_ERROR_SSL

### Major changes between OpenSSL 1.1.1d and OpenSSL 1.1.1e [17 Mar 2020]

  * Fixed an overflow bug in the x64_64 Montgomery squaring procedure
    used in exponentiation with 512-bit moduli ([CVE-2019-1551])

### Major changes between OpenSSL 1.1.1c and OpenSSL 1.1.1d [10 Sep 2019]

  * Fixed a fork protection issue ([CVE-2019-1549])
  * Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey
    ([CVE-2019-1563])
  * For built-in EC curves, ensure an EC_GROUP built from the curve name is
    used even when parsing explicit parameters
  * Compute ECC cofactors if not provided during EC_GROUP construction
    ([CVE-2019-1547])
  * Early start up entropy quality from the DEVRANDOM seed source has been
    improved for older Linux systems
  * Correct the extended master secret constant on EBCDIC systems
  * Use Windows installation paths in the mingw builds ([CVE-2019-1552])
  * Changed DH_check to accept parameters with order q and 2q subgroups
  * Significantly reduce secure memory usage by the randomness pools
  * Revert the DEVRANDOM_WAIT feature for Linux systems

### Major changes between OpenSSL 1.1.1b and OpenSSL 1.1.1c [28 May 2019]

  * Prevent over long nonces in ChaCha20-Poly1305 ([CVE-2019-1543])

### Major changes between OpenSSL 1.1.1a and OpenSSL 1.1.1b [26 Feb 2019]

  * Change the info callback signals for the start and end of a post-handshake
    message exchange in TLSv1.3.
  * Fix a bug in DTLS over SCTP. This breaks interoperability with older
    versions of OpenSSL like OpenSSL 1.1.0 and OpenSSL 1.0.2.

### Major changes between OpenSSL 1.1.1 and OpenSSL 1.1.1a [20 Nov 2018]

  * Timing vulnerability in DSA signature generation ([CVE-2018-0734])
  * Timing vulnerability in ECDSA signature generation ([CVE-2018-0735])

### Major changes between OpenSSL 1.1.0i and OpenSSL 1.1.1 [11 Sep 2018]

  * Support for TLSv1.3 added. The TLSv1.3 implementation includes:
    * Fully compliant implementation of RFC8446 (TLSv1.3) on by default
    * Early data (0-RTT)
    * Post-handshake authentication and key update
    * Middlebox Compatibility Mode
    * TLSv1.3 PSKs
    * Support for all five RFC8446 ciphersuites
    * RSA-PSS signature algorithms (backported to TLSv1.2)
    * Configurable session ticket support
    * Stateless server support
    * Rewrite of the packet construction code for "safer" packet handling
    * Rewrite of the extension handling code
    For further important information, see the [TLS1.3 page](
    https://wiki.openssl.org/index.php/TLS1.3) in the OpenSSL Wiki.

  * Complete rewrite of the OpenSSL random number generator to introduce the
    following capabilities
      * The default RAND method now utilizes an AES-CTR DRBG according to
        NIST standard SP 800-90Ar1.
      * Support for multiple DRBG instances with seed chaining.
      * There is a public and private DRBG instance.
      * The DRBG instances are fork-safe.
      * Keep all global DRBG instances on the secure heap if it is enabled.
      * The public and private DRBG instance are per thread for lock free
      operation
  * Support for various new cryptographic algorithms including:
      * SHA3
      * SHA512/224 and SHA512/256
      * EdDSA (both Ed25519 and Ed448) including X509 and TLS support
      * X448 (adding to the existing X25519 support in 1.1.0)
      * Multi-prime RSA
      * SM2
      * SM3
      * SM4
      * SipHash
      * ARIA (including TLS support)
  * Significant Side-Channel attack security improvements
  * Add a new ClientHello callback to provide the ability to adjust the SSL
  object at an early stage.
  * Add 'Maximum Fragment Length' TLS extension negotiation and support
  * A new STORE module, which implements a uniform and URI based reader of
   stores that can contain keys, certificates, CRLs and numerous other
  objects.
  * Move the display of configuration data to configdata.pm.
  * Allow GNU style "make variables" to be used with Configure.
  * Claim the namespaces OSSL and OPENSSL, represented as symbol prefixes
  * Rewrite of devcrypto engine
@
text
@@


1.1.1.2
log
@Import OpenSSL-3.0.9

### Changes between 3.0.8 and 3.0.9 [30 May 2023]

 * Mitigate for the time it takes for `OBJ_obj2txt` to translate gigantic
   OBJECT IDENTIFIER sub-identifiers to canonical numeric text form.

   OBJ_obj2txt() would translate any size OBJECT IDENTIFIER to canonical
   numeric text form.  For gigantic sub-identifiers, this would take a very
   long time, the time complexity being O(n^2) where n is the size of that
   sub-identifier.  ([CVE-2023-2650])

   To mitigitate this, `OBJ_obj2txt()` will only translate an OBJECT
   IDENTIFIER to canonical numeric text form if the size of that OBJECT
   IDENTIFIER is 586 bytes or less, and fail otherwise.

   The basis for this restriction is RFC 2578 (STD 58), section 3.5. OBJECT
   IDENTIFIER values, which stipulates that OBJECT IDENTIFIERS may have at
   most 128 sub-identifiers, and that the maximum value that each sub-
   identifier may have is 2^32-1 (4294967295 decimal).

   For each byte of every sub-identifier, only the 7 lower bits are part of
   the value, so the maximum amount of bytes that an OBJECT IDENTIFIER with
   these restrictions may occupy is 32 * 128 / 7, which is approximately 586
   bytes.

   Ref: https://datatracker.ietf.org/doc/html/rfc2578#section-3.5

   *Richard Levitte*

 * Fixed buffer overread in AES-XTS decryption on ARM 64 bit platforms which
   happens if the buffer size is 4 mod 5 in 16 byte AES blocks. This can
   trigger a crash of an application using AES-XTS decryption if the memory
   just after the buffer being decrypted is not mapped.
   Thanks to Anton Romanov (Amazon) for discovering the issue.
   ([CVE-2023-1255])

   *Nevine Ebeid*

 * Reworked the Fix for the Timing Oracle in RSA Decryption ([CVE-2022-4304]).
   The previous fix for this timing side channel turned out to cause
   a severe 2-3x performance regression in the typical use case
   compared to 3.0.7. The new fix uses existing constant time
   code paths, and restores the previous performance level while
   fully eliminating all existing timing side channels.
   The fix was developed by Bernd Edlinger with testing support
   by Hubert Kario.

   *Bernd Edlinger*

 * Corrected documentation of X509_VERIFY_PARAM_add0_policy() to mention
   that it does not enable policy checking. Thanks to David Benjamin for
   discovering this issue.
   ([CVE-2023-0466])

   *Tomáš Mráz*

 * Fixed an issue where invalid certificate policies in leaf certificates are
   silently ignored by OpenSSL and other certificate policy checks are skipped
   for that certificate. A malicious CA could use this to deliberately assert
   invalid certificate policies in order to circumvent policy checking on the
   certificate altogether.
   ([CVE-2023-0465])

   *Matt Caswell*

 * Limited the number of nodes created in a policy tree to mitigate
   against CVE-2023-0464.  The default limit is set to 1000 nodes, which
   should be sufficient for most installations.  If required, the limit
   can be adjusted by setting the OPENSSL_POLICY_TREE_NODES_MAX build
   time define to a desired maximum number of nodes or zero to allow
   unlimited growth.
   ([CVE-2023-0464])

   *Paul Dale*
@
text
@a191 9
=head4 Algorithm Fetching

Using calls to convenience functions such as EVP_sha256() and EVP_aes_256_gcm() may
incur a performance penalty when using providers.
Retrieving algorithms from providers involves searching for an algorithm by name.
This is much slower than directly accessing a method table.
It is recommended to prefetch algorithms if an algorithm is used many times.
See L<crypto(7)/Performance>, L<crypto(7)/Explicit fetching> and L<crypto(7)/Implicit fetching>.

a2215 22
=head3 NID handling for provided keys and algorithms

The following functions for NID (numeric id) handling have changed semantics.

=over 4

=item *

EVP_PKEY_id(), EVP_PKEY_get_id()

This function was previously used to reliably return the NID of
an EVP_PKEY object, e.g., to look up the name of the algorithm of
such EVP_PKEY by calling L<OBJ_nid2sn(3)>. With the introduction
of L<provider(7)>s EVP_PKEY_id() or its new equivalent
L<EVP_PKEY_get_id(3)> might now also return the value -1
(B<EVP_PKEY_KEYMGMT>) indicating the use of a provider to
implement the EVP_PKEY object. Therefore, the use of
L<EVP_PKEY_get0_type_name(3)> is recommended for retrieving
the name of the EVP_PKEY algorithm.

=back

@


1.1.1.3
log
@Import OpenSSL-3.0.12 (previous was OpenSSL-3.0.9)

### Changes between 3.0.11 and 3.0.12 [24 Oct 2023]

 * Fix incorrect key and IV resizing issues when calling EVP_EncryptInit_ex2(),
   EVP_DecryptInit_ex2() or EVP_CipherInit_ex2() with OSSL_PARAM parameters
   that alter the key or IV length ([CVE-2023-5363]).

   *Paul Dale*

### Changes between 3.0.10 and 3.0.11 [19 Sep 2023]

 * Fix POLY1305 MAC implementation corrupting XMM registers on Windows.

   The POLY1305 MAC (message authentication code) implementation in OpenSSL
   does not save the contents of non-volatile XMM registers on Windows 64
   platform when calculating the MAC of data larger than 64 bytes. Before
   returning to the caller all the XMM registers are set to zero rather than
   restoring their previous content. The vulnerable code is used only on newer
   x86_64 processors supporting the AVX512-IFMA instructions.

   The consequences of this kind of internal application state corruption can
   be various - from no consequences, if the calling application does not
   depend on the contents of non-volatile XMM registers at all, to the worst
   consequences, where the attacker could get complete control of the
   application process. However given the contents of the registers are just
   zeroized so the attacker cannot put arbitrary values inside, the most likely
   consequence, if any, would be an incorrect result of some application
   dependent calculations or a crash leading to a denial of service.

   ([CVE-2023-4807])

   *Bernd Edlinger*

### Changes between 3.0.9 and 3.0.10 [1 Aug 2023]

 * Fix excessive time spent checking DH q parameter value.

   The function DH_check() performs various checks on DH parameters. After
   fixing CVE-2023-3446 it was discovered that a large q parameter value can
   also trigger an overly long computation during some of these checks.
   A correct q value, if present, cannot be larger than the modulus p
   parameter, thus it is unnecessary to perform these checks if q is larger
   than p.

   If DH_check() is called with such q parameter value,
   DH_CHECK_INVALID_Q_VALUE return flag is set and the computationally
   intensive checks are skipped.

   ([CVE-2023-3817])

   *Tomáš Mráz*

 * Fix DH_check() excessive time with over sized modulus.

   The function DH_check() performs various checks on DH parameters. One of
   those checks confirms that the modulus ("p" parameter) is not too large.
   Trying to use a very large modulus is slow and OpenSSL will not normally use
   a modulus which is over 10,000 bits in length.

   However the DH_check() function checks numerous aspects of the key or
   parameters that have been supplied. Some of those checks use the supplied
   modulus value even if it has already been found to be too large.

   A new limit has been added to DH_check of 32,768 bits. Supplying a
   key/parameters with a modulus over this size will simply cause DH_check() to
   fail.

   ([CVE-2023-3446])

   *Matt Caswell*

 * Do not ignore empty associated data entries with AES-SIV.

   The AES-SIV algorithm allows for authentication of multiple associated
   data entries along with the encryption. To authenticate empty data the
   application has to call `EVP_EncryptUpdate()` (or `EVP_CipherUpdate()`)
   with NULL pointer as the output buffer and 0 as the input buffer length.
   The AES-SIV implementation in OpenSSL just returns success for such call
   instead of performing the associated data authentication operation.
   The empty data thus will not be authenticated. ([CVE-2023-2975])

   Thanks to Juerg Wullschleger (Google) for discovering the issue.

   The fix changes the authentication tag value and the ciphertext for
   applications that use empty associated data entries with AES-SIV.
   To decrypt data encrypted with previous versions of OpenSSL the application
   has to skip calls to `EVP_DecryptUpdate()` for empty associated data
   entries.

   *Tomáš Mráz*
@
text
@d133 1
a133 1
will be considered legacy and will continue to work.
a308 9
=head4 PKCS#12 KDF versus FIPS

Unlike in 1.x.y, the PKCS12KDF algorithm used when a PKCS#12 structure
is created with a MAC that does not work with the FIPS provider as the PKCS12KDF
is not a FIPS approvable mechanism.

See L<EVP_KDF-PKCS12KDF(7)>, L<PKCS12_create(3)>, L<openssl-pkcs12(1)>,
L<OSSL_PROVIDER-FIPS(7)>.

d644 1
a644 1
All functions listed below with a I<NAME> have a replacement function I<NAME_ex>
d1002 1
a1002 1
Before providers were added algorithms were overridden by changing the methods
d1551 1
a1551 1
See L<EVP_PKEY-EC(7)/Common EC parameters> which handles flags as separate
@


1.1.1.4
log
@Import OpenSSL 3.0.14 (last was 3.0.12)

### Changes between 3.0.13 and 3.0.14 [4 Jun 2024]

 * Fixed potential use after free after SSL_free_buffers() is called.

   The SSL_free_buffers function is used to free the internal OpenSSL
   buffer used when processing an incoming record from the network.
   The call is only expected to succeed if the buffer is not currently
   in use. However, two scenarios have been identified where the buffer
   is freed even when still in use.

   The first scenario occurs where a record header has been received
   from the network and processed by OpenSSL, but the full record body
   has not yet arrived. In this case calling SSL_free_buffers will succeed
   even though a record has only been partially processed and the buffer
   is still in use.

   The second scenario occurs where a full record containing application
   data has been received and processed by OpenSSL but the application has
   only read part of this data. Again a call to SSL_free_buffers will
   succeed even though the buffer is still in use.

   ([CVE-2024-4741])

   *Matt Caswell*

 * Fixed an issue where checking excessively long DSA keys or parameters may
   be very slow.

   Applications that use the functions EVP_PKEY_param_check() or
   EVP_PKEY_public_check() to check a DSA public key or DSA parameters may
   experience long delays. Where the key or parameters that are being checked
   have been obtained from an untrusted source this may lead to a Denial of
   Service.

   To resolve this issue DSA keys larger than OPENSSL_DSA_MAX_MODULUS_BITS
   will now fail the check immediately with a DSA_R_MODULUS_TOO_LARGE error
   reason.

   ([CVE-2024-4603])

   *Tomáš Mráz*

 * Fixed an issue where some non-default TLS server configurations can cause
   unbounded memory growth when processing TLSv1.3 sessions. An attacker may
   exploit certain server configurations to trigger unbounded memory growth that
   would lead to a Denial of Service

   This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option
   is being used (but not if early_data is also configured and the default
   anti-replay protection is in use). In this case, under certain conditions,
   the session cache can get into an incorrect state and it will fail to flush
   properly as it fills. The session cache will continue to grow in an unbounded
   manner. A malicious client could deliberately create the scenario for this
   failure to force a Denial of Service. It may also happen by accident in
   normal operation.

   ([CVE-2024-2511])

   *Matt Caswell*

 * New atexit configuration switch, which controls whether the OPENSSL_cleanup
   is registered when libcrypto is unloaded. This can be used on platforms
   where using atexit() from shared libraries causes crashes on exit.

   *Randall S. Becker*

### Changes between 3.0.12 and 3.0.13 [30 Jan 2024]

 * A file in PKCS12 format can contain certificates and keys and may come from
   an untrusted source. The PKCS12 specification allows certain fields to be
   NULL, but OpenSSL did not correctly check for this case. A fix has been
   applied to prevent a NULL pointer dereference that results in OpenSSL
   crashing. If an application processes PKCS12 files from an untrusted source
   using the OpenSSL APIs then that application will be vulnerable to this
   issue prior to this fix.

   OpenSSL APIs that were vulnerable to this are: PKCS12_parse(),
   PKCS12_unpack_p7data(), PKCS12_unpack_p7encdata(), PKCS12_unpack_authsafes()
   and PKCS12_newpass().

   We have also fixed a similar issue in SMIME_write_PKCS7(). However since this
   function is related to writing data we do not consider it security
   significant.

   ([CVE-2024-0727])

   *Matt Caswell*

 * When function EVP_PKEY_public_check() is called on RSA public keys,
   a computation is done to confirm that the RSA modulus, n, is composite.
   For valid RSA keys, n is a product of two or more large primes and this
   computation completes quickly. However, if n is an overly large prime,
   then this computation would take a long time.

   An application that calls EVP_PKEY_public_check() and supplies an RSA key
   obtained from an untrusted source could be vulnerable to a Denial of Service
   attack.

   The function EVP_PKEY_public_check() is not called from other OpenSSL
   functions however it is called from the OpenSSL pkey command line
   application. For that reason that application is also vulnerable if used
   with the "-pubin" and "-check" options on untrusted data.

   To resolve this issue RSA keys larger than OPENSSL_RSA_MAX_MODULUS_BITS will
   now fail the check immediately with an RSA_R_MODULUS_TOO_LARGE error reason.

   ([CVE-2023-6237])

   *Tomáš Mráz*

 * Restore the encoding of SM2 PrivateKeyInfo and SubjectPublicKeyInfo to
   have the contained AlgorithmIdentifier.algorithm set to id-ecPublicKey
   rather than SM2.

   *Richard Levitte*

 * The POLY1305 MAC (message authentication code) implementation in OpenSSL
   for PowerPC CPUs saves the contents of vector registers in different
   order than they are restored. Thus the contents of some of these vector
   registers is corrupted when returning to the caller. The vulnerable code is
   used only on newer PowerPC processors supporting the PowerISA 2.07
   instructions.

   The consequences of this kind of internal application state corruption can
   be various - from no consequences, if the calling application does not
   depend on the contents of non-volatile XMM registers at all, to the worst
   consequences, where the attacker could get complete control of the
   application process. However unless the compiler uses the vector registers
   for storing pointers, the most likely consequence, if any, would be an
   incorrect result of some application dependent calculations or a crash
   leading to a denial of service.

   ([CVE-2023-6129])

   *Rohan McLure*

 * Fix excessive time spent in DH check / generation with large Q parameter
   value.

   Applications that use the functions DH_generate_key() to generate an
   X9.42 DH key may experience long delays. Likewise, applications that use
   DH_check_pub_key(), DH_check_pub_key_ex() or EVP_PKEY_public_check()
   to check an X9.42 DH key or X9.42 DH parameters may experience long delays.
   Where the key or parameters that are being checked have been obtained from
   an untrusted source this may lead to a Denial of Service.

   ([CVE-2023-5678])

   *Richard Levitte*
@
text
@a138 8
Setting engine-based or application-based default low-level crypto method such
as B<RSA_METHOD> or B<EC_KEY_METHOD> is still possible and keys inside the
default provider will use the engine-based implementation for the crypto
operations. However B<EVP_PKEY>s created by decoding by using B<OSSL_DECODER>,
B<PEM_> or B<d2i_> APIs will be provider-based. To create a fully legacy
B<EVP_PKEY>s L<EVP_PKEY_set1_RSA(3)>, L<EVP_PKEY_set1_EC_KEY(3)> or similar
functions must be used.

d1301 1
a1301 1
d2i_EC_PUBKEY_fp(), d2i_RSAPrivateKey(),
a1309 7
o2i_ECPublicKey()

Use L<EVP_PKEY_set1_encoded_public_key(3)>.
See L</Deprecated low-level key parameter setters>

=item *

d1860 1
a1860 1
i2d_EC_PUBKEY_fp()
a1866 7
i2o_ECPublicKey()

Use L<EVP_PKEY_get1_encoded_public_key(3)>.
See L</Deprecated low-level key parameter getters>

=item *

d2465 1
a2465 1
Copyright 2021-2024 The OpenSSL Project Authors. All Rights Reserved.
@


1.1.1.2.2.1
log
@file migration_guide.pod was added on branch netbsd-10 on 2023-08-11 13:41:05 +0000
@
text
@d1 2463
@


1.1.1.2.2.2
log
@Pull up following revision(s) (requested by riastradh in ticket #317):

	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+013+59973.key up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+013+59973.private up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+013+60101.key up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+013+60101.private up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/optout-with-ent.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/autosign/ns3/nsec-only.example.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/catz/ns3/catalog.example.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/catz/ns4/catalog.example.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/catz/ns4/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/dnssec.4 up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir2.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir3.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir4.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir5.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir1.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/check-wildcard-no.conf up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/check-wildcard.conf up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkconf/check-wildcard.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkds/tests_checkds.py up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/checkzone/zones/bad-tsig.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dialup/ns1/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dialup/ns2/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dialup/ns3/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dnssec/ns4/managed-keys.bind.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+010+18240.key up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+010+18240.private up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+010+28633.key up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+010+28633.private up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/dnstap/prereq.sh up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/keymgr/19-old-keys/policy.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/keymgr/18-nonstd-prepub/policy.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/keymgr/policy.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.dirconf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.pipeconf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.plain.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.plainconf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.symconf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.tsconf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.unlimited.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.iso8601.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.versconf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/named1.args up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/logfileconfig/named2.args up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/sub.tld.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/tld.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/mkeys/ns4/sign.sh up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/mkeys/ns4/sub.foo.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/mkeys/ns5/foo.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns4/v4only.net.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns6/redirect.com.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns6/tld1.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns7/sub.tld1.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns7/tld2.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns9/named.args up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns9/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns9/named.ipv6-only up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/resolver/ns9/root.hint up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/rpz/ns6/bl.tld2s.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/rrl/broken.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+008+51650.key up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+008+51650.private up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+008+52810.key up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+008+52810.private up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/stale.test.db up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/statschannel/tests_json.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/statschannel/tests_xml.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/stress/ns1/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/stress/ns2/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/stress/ns3/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/stress/ns4/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/tcp/tests_tcp.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/upforwd/ns3/named1.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/upforwd/ns3/named2.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/wildcard/tests_wildcard.py up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/ttl/prereq.sh up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/ttl/tests_cache_ttl.py up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/kasp/ns3/policies/kasp-fips.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/kasp/ns3/named-fips.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/kasp/ns6/policies/kasp-fips.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/shutdown/tests_shutdown.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/nsec3/ns2/named.conf.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/nsec3/ns2/setup.sh up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/nsec3/ns2/template.db.in up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/timeouts/tests_tcp_timeouts.py up to 1.1.1.1
	external/mpl/bind/dist/bin/tests/system/get_algorithms.py up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.34.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.35.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.36.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.37.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-known-issues.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.38.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.39.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.40.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.41.rst up to 1.1.1.1
	external/mpl/bind/dist/doc/notes/notes-9.16.42.rst up to 1.1.1.1
	external/mpl/bind/dist/lib/dns/tests/Krsa.+008+29238.key up to 1.1.1.1
	external/mpl/bind/dist/sonar-project.properties up to 1.1.1.1
	external/mpl/bind/dist/tsan-suppressions.txt    delete
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+005+30676.key delete
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+005+30676.private delete
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+005+30804.key delete
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/Xbar.+005+30804.private delete
	external/mpl/bind/dist/bin/tests/system/autosign/ns3/nsec.example.db.in delete
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir1.conf delete
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir2.conf delete
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir3.conf delete
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir4.conf delete
	external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-keydir5.conf delete
	external/mpl/bind/dist/bin/tests/system/checkds/tests-checkds.py delete
	external/mpl/bind/dist/bin/tests/system/checkzone/zones/bad-tsig.db delete
	external/mpl/bind/dist/bin/tests/system/common/controls.conf delete
	external/mpl/bind/dist/bin/tests/system/delzone/ns1/inlinesec.db delete
	external/mpl/bind/dist/bin/tests/system/delzone/ns1/named.conf delete
	external/mpl/bind/dist/bin/tests/system/delzone/ns2/added.db delete
	external/mpl/bind/dist/bin/tests/system/delzone/ns2/named.args delete
	external/mpl/bind/dist/bin/tests/system/delzone/ns2/named.conf delete
	external/mpl/bind/dist/bin/tests/system/delzone/ns2/normal.db delete
	external/mpl/bind/dist/bin/tests/system/delzone/clean.sh delete
	external/mpl/bind/dist/bin/tests/system/delzone/setup.sh delete
	external/mpl/bind/dist/bin/tests/system/delzone/tests.sh delete
	external/mpl/bind/dist/bin/tests/system/dialup/ns1/named.conf delete
	external/mpl/bind/dist/bin/tests/system/dialup/ns2/named.conf delete
	external/mpl/bind/dist/bin/tests/system/dialup/ns3/named.conf delete
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+005+07065.key delete
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+005+07065.private delete
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+005+23362.key delete
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/Kexample.com.+005+23362.private delete
	external/mpl/bind/dist/bin/tests/system/keymgr/policy.conf delete
	external/mpl/bind/dist/bin/tests/system/keymgr/18-nonstd-prepub/policy.conf delete
	external/mpl/bind/dist/bin/tests/system/keymgr/19-old-keys/policy.conf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/controls.conf.in delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.dirconf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.iso8601 delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.pipeconf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.plain delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.plainconf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.symconf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.tsconf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.unlimited delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.versconf delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/rndc.conf.in delete
	external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/root.db delete
	external/mpl/bind/dist/bin/tests/system/rrl/broken.conf delete
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+005+05896.key delete
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+005+05896.private delete
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+005+51829.key delete
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/Xexample.+005+51829.private delete
	external/mpl/bind/dist/bin/tests/system/shutdown/tests-shutdown.py delete
	external/mpl/bind/dist/bin/tests/system/stress/ns1/named.conf delete
	external/mpl/bind/dist/bin/tests/system/stress/ns2/named.conf delete
	external/mpl/bind/dist/bin/tests/system/stress/ns3/named.conf delete
	external/mpl/bind/dist/bin/tests/system/stress/ns4/named.conf delete
	external/mpl/bind/dist/bin/tests/system/statschannel/tests-json.py delete
	external/mpl/bind/dist/bin/tests/system/statschannel/tests-xml.py delete
	external/mpl/bind/dist/bin/tests/system/tcp/tests-tcp.py delete
	external/mpl/bind/dist/bin/tests/system/timeouts/tests-tcp.py delete
	external/mpl/bind/dist/bin/tests/system/ttl/tests.sh delete
	external/mpl/bind/dist/bin/tests/system/upforwd/ns3/named.conf.in delete
	external/mpl/bind/dist/bin/tests/system/wildcard/tests-wildcard.py delete
	external/mpl/bind/dist/doc/man/named-compilezone.1in delete
	external/mpl/bind/dist/lib/dns/tests/Krsa.+005+29235.key delete
	external/mpl/bind/bin/dnssec/dnssec-verify/Makefile up to 1.3
	external/mpl/bind/dist/CHANGES                  up to 1.1.1.15
	external/mpl/bind/dist/CONTRIBUTING             up to 1.1.1.5
	external/mpl/bind/dist/CONTRIBUTING.md          up to 1.1.1.6
	external/mpl/bind/dist/COPYRIGHT                up to 1.1.1.6
	external/mpl/bind/dist/config.h.in              up to 1.13
	external/mpl/bind/dist/configure                up to 1.16
	external/mpl/bind/dist/configure.ac             up to 1.1.1.14
	external/mpl/bind/dist/dangerfile.py            up to 1.1.1.6
	external/mpl/bind/dist/srcid                    up to 1.1.1.15
	external/mpl/bind/dist/version                  up to 1.1.1.15
	external/mpl/bind/dist/bin/check/check-tool.c   up to 1.9
	external/mpl/bind/dist/bin/check/named-checkconf.c up to 1.9
	external/mpl/bind/dist/bin/check/named-checkzone.c up to 1.9
	external/mpl/bind/dist/bin/confgen/ddns-confgen.c up to 1.7
	external/mpl/bind/dist/bin/delv/delv.c          up to 1.12
	external/mpl/bind/dist/bin/dig/dig.c            up to 1.9
	external/mpl/bind/dist/bin/dig/dig.rst          up to 1.1.1.5
	external/mpl/bind/dist/bin/dig/dighost.c        up to 1.15
	external/mpl/bind/dist/bin/dig/host.c           up to 1.10
	external/mpl/bind/dist/bin/dnssec/dnssec-cds.c  up to 1.9
	external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.c up to 1.8
	external/mpl/bind/dist/bin/dnssec/dnssec-keygen.c up to 1.10
	external/mpl/bind/dist/bin/dnssec/dnssec-revoke.c up to 1.8
	external/mpl/bind/dist/bin/dnssec/dnssec-settime.c up to 1.7
	external/mpl/bind/dist/bin/dnssec/dnssec-signzone.c up to 1.10
	external/mpl/bind/dist/bin/dnssec/dnssectool.c  up to 1.8
	external/mpl/bind/dist/bin/named/bind9.xsl      up to 1.1.1.8
	external/mpl/bind/dist/bin/named/bind9.xsl.h    up to 1.9
	external/mpl/bind/dist/bin/named/builtin.c      up to 1.6
	external/mpl/bind/dist/bin/named/config.c       up to 1.14
	external/mpl/bind/dist/bin/named/controlconf.c  up to 1.11
	external/mpl/bind/dist/bin/named/logconf.c      up to 1.8
	external/mpl/bind/dist/bin/named/main.c         up to 1.15
	external/mpl/bind/dist/bin/named/named.conf.rst up to 1.1.1.6
	external/mpl/bind/dist/bin/named/named.rst      up to 1.1.1.4
	external/mpl/bind/dist/bin/named/server.c       up to 1.20
	external/mpl/bind/dist/bin/named/statschannel.c up to 1.13
	external/mpl/bind/dist/bin/named/tsigconf.c     up to 1.7
	external/mpl/bind/dist/bin/named/zoneconf.c     up to 1.14
	external/mpl/bind/dist/bin/named/unix/os.c      up to 1.10
	external/mpl/bind/dist/bin/nsupdate/nsupdate.c  up to 1.13
	external/mpl/bind/dist/bin/nsupdate/nsupdate.rst up to 1.1.1.4
	external/mpl/bind/dist/bin/pkcs11/pkcs11-keygen.c up to 1.7
	external/mpl/bind/dist/bin/plugins/filter-aaaa.c up to 1.8
	external/mpl/bind/dist/bin/python/isc/coverage.py.in up to 1.1.1.5
	external/mpl/bind/dist/bin/python/isc/dnskey.py.in up to 1.1.1.5
	external/mpl/bind/dist/bin/python/isc/keymgr.py.in up to 1.1.1.5
	external/mpl/bind/dist/bin/python/isc/keyzone.py.in up to 1.1.1.5
	external/mpl/bind/dist/bin/rndc/rndc.c          up to 1.10
	external/mpl/bind/dist/bin/rndc/rndc.rst        up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/cfg_test.c     up to 1.7
	external/mpl/bind/dist/bin/tests/wire_test.c    up to 1.8
	external/mpl/bind/dist/bin/tests/optional/byaddr_test.c up to 1.8
	external/mpl/bind/dist/bin/tests/optional/db_test.c up to 1.7
	external/mpl/bind/dist/bin/tests/optional/name_test.c up to 1.7
	external/mpl/bind/dist/bin/tests/optional/nsecify.c up to 1.8
	external/mpl/bind/dist/bin/tests/optional/ratelimiter_test.c up to 1.7
	external/mpl/bind/dist/bin/tests/optional/rbt_test.c up to 1.8
	external/mpl/bind/dist/bin/tests/optional/shutdown_test.c up to 1.8
	external/mpl/bind/dist/bin/tests/optional/sock_test.c up to 1.7
	external/mpl/bind/dist/bin/tests/optional/task_test.c up to 1.7
	external/mpl/bind/dist/bin/tests/optional/timer_test.c up to 1.8
	external/mpl/bind/dist/bin/tests/optional/zone_test.c up to 1.9
	external/mpl/bind/dist/bin/tests/system/ckdnsrps.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/conf.sh.common up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/conf.sh.in up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/conf.sh.win32 up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/feature-test.c up to 1.11
	external/mpl/bind/dist/bin/tests/system/kasp.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/pytest_custom_markers.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/resolve.c up to 1.4
	external/mpl/bind/dist/bin/tests/system/run.sh  up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/start.pl up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/stop.pl up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/system-test-driver.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/testcrypto.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/acl/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/addzone/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/auth/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/autosign/clean.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/autosign/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/autosign/ns1/keygen.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/keygen.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/autosign/ns2/named.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/autosign/ns3/keygen.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/autosign/ns3/named.conf.in up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/builtin/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/cacheclean/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/case/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/catz/clean.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/catz/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/catz/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/catz/ns1/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/catz/ns2/named1.conf.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/catz/ns2/named2.conf.in up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cds/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/cds/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/chain/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/chain/ans4/ans.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/chain/ns2/sign.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/checkconf/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/checkconf/deprecated.conf up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/checkconf/good.conf up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-keylen.conf up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/checkconf/tests.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/checkds/ns9/setup.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/checknames/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/checkzone/clean.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/checkzone/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/checkzone/tests.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/checkzone/zones/good-svcb.db up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cookie/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/cookie/ans9/ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/coverage/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/dialup/clean.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dialup/tests.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/digdelv/yamlget.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dlzexternal/driver.c up to 1.12
	external/mpl/bind/dist/bin/tests/system/dlzexternal/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/dns64/ns1/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dnssec/clean.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/dnssec/tests.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/dnssec/ans10/ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/bogus-ksk.key up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/bogus-zsk.key up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test1.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test2.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test3.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test4.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test5.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test6.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnssec/signer/general/test8.zone up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dnstap/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/dscp/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dscp/tests.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dsdigest/ns1/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/dsdigest/ns2/sign.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/dupsigs/clean.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dupsigs/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dupsigs/tests.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dupsigs/ns1/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dupsigs/ns1/reset_keys.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dupsigs/ns1/signing.test.db.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dyndb/driver/db.c up to 1.7
	external/mpl/bind/dist/bin/tests/system/emptyzones/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/emptyzones/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/formerr/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/forward/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/forward/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/forward/ans11/ans.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/idna/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/inline/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/inline/setup.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/inline/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/inline/tests_signed_zone_files.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/inline/ns1/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/inline/ns3/sign.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/inline/ns7/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/inline/ns8/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/ixfr/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/journal/clean.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/kasp/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/kasp/kasp.conf up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/kasp/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/kasp/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/kasp/ns3/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/kasp/ns3/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/kasp/ns3/policies/kasp.conf.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/kasp/ns4/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/kasp/ns6/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/kasp/ns6/named2.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/kasp/ns6/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/kasp/ns6/policies/csk1.conf.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/kasp/ns6/policies/kasp.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/keepalive/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/keymgr/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/keymgr/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/clean.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/tests.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns3/kasp.conf.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns3/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns4/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns4/named2.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns4/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/legacy/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/legacy/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/logfileconfig/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/logfileconfig/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/logfileconfig/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/masterformat/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/metadata/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/metadata/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/mirror/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/mirror/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/mirror/ns1/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/mirror/ns2/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/mkeys/clean.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/mkeys/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/mkeys/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/named1.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/named2.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/named3.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/root.db up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/mkeys/ns1/sign.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/mkeys/ns3/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/mkeys/ns4/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/mkeys/ns5/named.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/mkeys/ns6/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/names/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/notify/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/nsec3/clean.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/nsec3/setup.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/nsec3/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/nsec3/ns3/named.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/nsec3/ns3/named2.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/nsec3/ns3/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/nslookup/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/nsupdate/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/nsupdate/tests.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/nsupdate/krb/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/nsupdate/ns3/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/nzd2nzf/prereq.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/nzd2nzf/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/padding/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/pending/ns1/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/pending/ns2/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/qmin/ans3/ans.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/redirect/ns1/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/redirect/ns3/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/redirect/ns5/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/resolver/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/resolver/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/resolver/ans2/ans.pl up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/resolver/ans3/ans.pl up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/resolver/ns1/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/resolver/ns4/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/resolver/ns4/tld1.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/resolver/ns4/tld2.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/resolver/ns6/keygen.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/resolver/ns6/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/resolver/ns6/root.db up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/resolver/ns7/named1.conf.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/resolver/ns7/named2.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/rndc/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/rndc/tests.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/rndc/ns7/named.conf.in up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rootkeysentinel/ns1/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/rootkeysentinel/ns2/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpz/clean.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/rpz/dnsrps.c up to 1.7
	external/mpl/bind/dist/bin/tests/system/rpz/qperf.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rpz/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/rpz/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/rpz/ns2/base-tld2s.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rpz/ns2/tld2.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rpz/ns3/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/rpz/ns6/named.conf.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/rrchecker/clean.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rrl/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rrl/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rrl/tests.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rrsetorder/tests.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/README.md up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/bigkey.c up to 1.8
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns1/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/dsset-example.in up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/example.db.bad up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/runtime/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/serve-stale/clean.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/serve-stale/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/serve-stale/ans2/ans.pl up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named3.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/root.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named2.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named6.conf.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/shutdown/clean.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/shutdown/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/smartsign/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/sortlist/tests.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/spf/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/staticstub/ns3/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/staticstub/ns4/sign.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/statschannel/generic.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/statschannel/generic_dnspython.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/statschannel/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/stress/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/stress/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/stress/tests.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/stub/tests.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/sign.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns4/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/tsig/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/tsig/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/tsig/ns1/named.conf.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/tsiggss/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/ttl/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/ttl/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/unknown/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/unknown/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/unknown/ns3/sign.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/upforwd/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/upforwd/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/upforwd/tests.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/verify/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/verify/tests.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/verify/zones/genzones.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/views/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/wildcard/tests.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/wildcard/ns1/sign.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/xfer/tests.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/zero/clean.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/zero/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/zonechecks/setup.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tools/mdig.c         up to 1.11
	external/mpl/bind/dist/contrib/dlz/bin/dlzbdb/dlzbdb.c up to 1.7
	external/mpl/bind/dist/contrib/dlz/drivers/dlz_bdb_driver.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/drivers/dlz_bdbhpt_driver.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/drivers/dlz_filesystem_driver.c up to 1.8
	external/mpl/bind/dist/contrib/dlz/drivers/dlz_odbc_driver.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/drivers/dlz_postgres_driver.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/modules/bdbhpt/dlz_bdbhpt_dynamic.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/modules/filesystem/dlz_filesystem_dynamic.c up to 1.8
	external/mpl/bind/dist/contrib/dlz/modules/include/dlz_list.h up to 1.6
	external/mpl/bind/dist/contrib/dlz/modules/ldap/dlz_ldap_dynamic.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/modules/mysqldyn/dlz_mysqldyn_mod.c up to 1.7
	external/mpl/bind/dist/contrib/dlz/modules/perl/Makefile up to 1.1.1.3
	external/mpl/bind/dist/contrib/dlz/modules/perl/dlz_perl_driver.c up to 1.5
	external/mpl/bind/dist/contrib/dlz/modules/sqlite3/dlz_sqlite3_dynamic.c up to 1.6
	external/mpl/bind/dist/contrib/dlz/modules/wildcard/dlz_wildcard_dynamic.c up to 1.7
	external/mpl/bind/dist/doc/Makefile.in          up to 1.1.1.4
	external/mpl/bind/dist/doc/arm/build.rst        up to 1.1.1.2
	external/mpl/bind/dist/doc/arm/conf.py          up to 1.1.1.5
	external/mpl/bind/dist/doc/arm/dnssec.inc.rst   up to 1.1.1.2
	external/mpl/bind/dist/doc/arm/notes.rst        up to 1.1.1.7
	external/mpl/bind/dist/doc/arm/platforms.rst    up to 1.1.1.3
	external/mpl/bind/dist/doc/arm/reference.rst    up to 1.1.1.7
	external/mpl/bind/dist/doc/arm/requirements.txt up to 1.1.1.3
	external/mpl/bind/dist/doc/dnssec-guide/introduction.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/dnssec-guide/recipes.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/dnssec-guide/signing.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/dnssec-guide/validation.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/man/Makefile.in      up to 1.1.1.4
	external/mpl/bind/dist/doc/man/arpaname.1in     up to 1.1.1.4
	external/mpl/bind/dist/doc/man/conf.py          up to 1.1.1.5
	external/mpl/bind/dist/doc/man/ddns-confgen.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/delv.1in         up to 1.1.1.5
	external/mpl/bind/dist/doc/man/dig.1in          up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-cds.8in   up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-checkds.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-coverage.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-dsfromkey.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/dnssec-importkey.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/dnssec-keyfromlabel.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-keygen.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/dnssec-keymgr.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/dnssec-revoke.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-settime.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-signzone.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/dnssec-verify.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnstap-read.1in  up to 1.1.1.4
	external/mpl/bind/dist/doc/man/filter-aaaa.8in  up to 1.1.1.5
	external/mpl/bind/dist/doc/man/host.1in         up to 1.1.1.5
	external/mpl/bind/dist/doc/man/mdig.1in         up to 1.1.1.5
	external/mpl/bind/dist/doc/man/named-checkconf.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/named-checkzone.8in up to 1.1.1.5
	external/mpl/bind/dist/doc/man/named-compilezone.8in up to 1.1.1.3
	external/mpl/bind/dist/doc/man/named-journalprint.8in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/named-nzd2nzf.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/named-rrchecker.1in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/named.8in        up to 1.1.1.4
	external/mpl/bind/dist/doc/man/named.conf.5in   up to 1.1.1.6
	external/mpl/bind/dist/doc/man/nsec3hash.8in    up to 1.1.1.5
	external/mpl/bind/dist/doc/man/nslookup.1in     up to 1.1.1.4
	external/mpl/bind/dist/doc/man/nsupdate.1in     up to 1.1.1.4
	external/mpl/bind/dist/doc/man/pkcs11-destroy.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/pkcs11-keygen.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/pkcs11-list.8in  up to 1.1.1.4
	external/mpl/bind/dist/doc/man/pkcs11-tokens.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/rndc-confgen.8in up to 1.1.1.4
	external/mpl/bind/dist/doc/man/rndc.8in         up to 1.1.1.6
	external/mpl/bind/dist/doc/man/rndc.conf.5in    up to 1.1.1.5
	external/mpl/bind/dist/doc/man/tsig-keygen.8in  up to 1.1.1.3
	external/mpl/bind/dist/doc/misc/master.zoneopt  up to 1.1.1.6
	external/mpl/bind/dist/doc/misc/master.zoneopt.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/misc/options         up to 1.1.1.12
	external/mpl/bind/dist/doc/misc/options.active  up to 1.1.1.7
	external/mpl/bind/dist/doc/misc/options.grammar.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/misc/slave.zoneopt   up to 1.1.1.6
	external/mpl/bind/dist/doc/misc/slave.zoneopt.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.0.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.1.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.10.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.11.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.12.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.13.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.15.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.16.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/notes/notes-9.16.17.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/notes/notes-9.16.18.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/notes/notes-9.16.19.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/notes/notes-9.16.2.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.20.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/notes/notes-9.16.21.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.22.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.23.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.24.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.25.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.26.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.27.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.28.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.29.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.3.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.30.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.31.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.32.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.33.rst up to 1.1.1.2
	external/mpl/bind/dist/doc/notes/notes-9.16.4.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.5.rst up to 1.1.1.5
	external/mpl/bind/dist/doc/notes/notes-9.16.6.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.7.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.8.rst up to 1.1.1.4
	external/mpl/bind/dist/doc/notes/notes-9.16.9.rst up to 1.1.1.4
	external/mpl/bind/dist/fuzz/fuzz.h              up to 1.6
	external/mpl/bind/dist/lib/bind9/check.c        up to 1.15
	external/mpl/bind/dist/lib/bind9/getaddresses.c up to 1.7
	external/mpl/bind/dist/lib/dns/adb.c            up to 1.10
	external/mpl/bind/dist/lib/dns/badcache.c       up to 1.7
	external/mpl/bind/dist/lib/dns/byaddr.c         up to 1.8
	external/mpl/bind/dist/lib/dns/cache.c          up to 1.10
	external/mpl/bind/dist/lib/dns/catz.c           up to 1.10
	external/mpl/bind/dist/lib/dns/client.c         up to 1.12
	external/mpl/bind/dist/lib/dns/compress.c       up to 1.8
	external/mpl/bind/dist/lib/dns/db.c             up to 1.9
	external/mpl/bind/dist/lib/dns/diff.c           up to 1.8
	external/mpl/bind/dist/lib/dns/dispatch.c       up to 1.9
	external/mpl/bind/dist/lib/dns/dnsrps.c         up to 1.10
	external/mpl/bind/dist/lib/dns/dnssec.c         up to 1.13
	external/mpl/bind/dist/lib/dns/dst_api.c        up to 1.13
	external/mpl/bind/dist/lib/dns/dst_parse.c      up to 1.10
	external/mpl/bind/dist/lib/dns/ecdb.c           up to 1.9
	external/mpl/bind/dist/lib/dns/ecs.c            up to 1.6
	external/mpl/bind/dist/lib/dns/forward.c        up to 1.8
	external/mpl/bind/dist/lib/dns/gen.c            up to 1.11
	external/mpl/bind/dist/lib/dns/hmac_link.c      up to 1.8
	external/mpl/bind/dist/lib/dns/journal.c        up to 1.11
	external/mpl/bind/dist/lib/dns/key.c            up to 1.8
	external/mpl/bind/dist/lib/dns/keymgr.c         up to 1.10
	external/mpl/bind/dist/lib/dns/keytable.c       up to 1.9
	external/mpl/bind/dist/lib/dns/master.c         up to 1.11
	external/mpl/bind/dist/lib/dns/masterdump.c     up to 1.13
	external/mpl/bind/dist/lib/dns/message.c        up to 1.15
	external/mpl/bind/dist/lib/dns/name.c           up to 1.12
	external/mpl/bind/dist/lib/dns/ncache.c         up to 1.8
	external/mpl/bind/dist/lib/dns/nsec.c           up to 1.9
	external/mpl/bind/dist/lib/dns/nsec3.c          up to 1.12
	external/mpl/bind/dist/lib/dns/nta.c            up to 1.9
	external/mpl/bind/dist/lib/dns/openssl_link.c   up to 1.9
	external/mpl/bind/dist/lib/dns/openssldh_link.c up to 1.9
	external/mpl/bind/dist/lib/dns/opensslecdsa_link.c up to 1.7
	external/mpl/bind/dist/lib/dns/openssleddsa_link.c up to 1.8
	external/mpl/bind/dist/lib/dns/opensslrsa_link.c up to 1.10
	external/mpl/bind/dist/lib/dns/order.c          up to 1.8
	external/mpl/bind/dist/lib/dns/peer.c           up to 1.10
	external/mpl/bind/dist/lib/dns/pkcs11rsa_link.c up to 1.8
	external/mpl/bind/dist/lib/dns/private.c        up to 1.8
	external/mpl/bind/dist/lib/dns/rbt.c            up to 1.13
	external/mpl/bind/dist/lib/dns/rbtdb.c          up to 1.17
	external/mpl/bind/dist/lib/dns/rcode.c          up to 1.12
	external/mpl/bind/dist/lib/dns/rdata.c          up to 1.13
	external/mpl/bind/dist/lib/dns/rdatalist.c      up to 1.7
	external/mpl/bind/dist/lib/dns/rdataslab.c      up to 1.7
	external/mpl/bind/dist/lib/dns/request.c        up to 1.8
	external/mpl/bind/dist/lib/dns/resolver.c       up to 1.17
	external/mpl/bind/dist/lib/dns/rootns.c         up to 1.7
	external/mpl/bind/dist/lib/dns/rpz.c            up to 1.13
	external/mpl/bind/dist/lib/dns/rriterator.c     up to 1.7
	external/mpl/bind/dist/lib/dns/rrl.c            up to 1.8
	external/mpl/bind/dist/lib/dns/sdb.c            up to 1.11
	external/mpl/bind/dist/lib/dns/sdlz.c           up to 1.11
	external/mpl/bind/dist/lib/dns/ssu.c            up to 1.7
	external/mpl/bind/dist/lib/dns/stats.c          up to 1.8
	external/mpl/bind/dist/lib/dns/tkey.c           up to 1.13
	external/mpl/bind/dist/lib/dns/tsig.c           up to 1.12
	external/mpl/bind/dist/lib/dns/update.c         up to 1.12
	external/mpl/bind/dist/lib/dns/validator.c      up to 1.13
	external/mpl/bind/dist/lib/dns/view.c           up to 1.14
	external/mpl/bind/dist/lib/dns/xfrin.c          up to 1.13
	external/mpl/bind/dist/lib/dns/zone.c           up to 1.18
	external/mpl/bind/dist/lib/dns/zonekey.c        up to 1.7
	external/mpl/bind/dist/lib/dns/zoneverify.c     up to 1.10
	external/mpl/bind/dist/lib/dns/zt.c             up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/db.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/rdataset.h up to 1.10
	external/mpl/bind/dist/lib/dns/include/dns/rdatasetiter.h up to 1.6
	external/mpl/bind/dist/lib/dns/include/dns/view.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/zone.h up to 1.10
	external/mpl/bind/dist/lib/dns/include/dns/zt.h up to 1.8
	external/mpl/bind/dist/lib/dns/rdata/any_255/tsig_250.c up to 1.8
	external/mpl/bind/dist/lib/dns/rdata/generic/amtrelay_260.c up to 1.6
	external/mpl/bind/dist/lib/dns/rdata/generic/caa_257.c up to 1.8
	external/mpl/bind/dist/lib/dns/rdata/generic/isdn_20.c up to 1.8
	external/mpl/bind/dist/lib/dns/rdata/generic/key_25.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/loc_29.c up to 1.9
	external/mpl/bind/dist/lib/dns/rdata/generic/tkey_249.c up to 1.8
	external/mpl/bind/dist/lib/dns/rdata/generic/txt_16.c up to 1.9
	external/mpl/bind/dist/lib/dns/rdata/in_1/a_1.c up to 1.9
	external/mpl/bind/dist/lib/dns/rdata/in_1/aaaa_28.c up to 1.9
	external/mpl/bind/dist/lib/dns/rdata/in_1/svcb_64.c up to 1.3
	external/mpl/bind/dist/lib/dns/tests/dbversion_test.c up to 1.10
	external/mpl/bind/dist/lib/dns/tests/dnstest.c  up to 1.12
	external/mpl/bind/dist/lib/dns/tests/rdata_test.c up to 1.12
	external/mpl/bind/dist/lib/dns/tests/rsa_test.c up to 1.10
	external/mpl/bind/dist/lib/dns/tests/zt_test.c  up to 1.10
	external/mpl/bind/dist/lib/dns/win32/libdns.def.in up to 1.1.1.12
	external/mpl/bind/dist/lib/irs/getaddrinfo.c    up to 1.9
	external/mpl/bind/dist/lib/irs/getnameinfo.c    up to 1.9
	external/mpl/bind/dist/lib/irs/resconf.c        up to 1.7
	external/mpl/bind/dist/lib/irs/win32/resconf.c  up to 1.7
	external/mpl/bind/dist/lib/isc/app.c            up to 1.8
	external/mpl/bind/dist/lib/isc/buffer.c         up to 1.8
	external/mpl/bind/dist/lib/isc/heap.c           up to 1.7
	external/mpl/bind/dist/lib/isc/ht.c             up to 1.8
	external/mpl/bind/dist/lib/isc/httpd.c          up to 1.8
	external/mpl/bind/dist/lib/isc/iterated_hash.c  up to 1.7
	external/mpl/bind/dist/lib/isc/lex.c            up to 1.10
	external/mpl/bind/dist/lib/isc/lib.c            up to 1.10
	external/mpl/bind/dist/lib/isc/log.c            up to 1.9
	external/mpl/bind/dist/lib/isc/mem.c            up to 1.14
	external/mpl/bind/dist/lib/isc/netaddr.c        up to 1.8
	external/mpl/bind/dist/lib/isc/pk11.c           up to 1.8
	external/mpl/bind/dist/lib/isc/radix.c          up to 1.8
	external/mpl/bind/dist/lib/isc/ratelimiter.c    up to 1.8
	external/mpl/bind/dist/lib/isc/rwlock.c         up to 1.13
	external/mpl/bind/dist/lib/isc/siphash.c        up to 1.8
	external/mpl/bind/dist/lib/isc/string.c         up to 1.7
	external/mpl/bind/dist/lib/isc/task.c           up to 1.18
	external/mpl/bind/dist/lib/isc/timer.c          up to 1.12
	external/mpl/bind/dist/lib/isc/url.c            up to 1.4
	external/mpl/bind/dist/lib/isc/utf8.c           up to 1.4
	external/mpl/bind/dist/lib/isc/include/isc/buffer.h up to 1.8
	external/mpl/bind/dist/lib/isc/include/isc/list.h up to 1.8
	external/mpl/bind/dist/lib/isc/include/isc/magic.h up to 1.6
	external/mpl/bind/dist/lib/isc/include/isc/string.h up to 1.7
	external/mpl/bind/dist/lib/isc/include/isc/task.h up to 1.8
	external/mpl/bind/dist/lib/isc/include/isc/timer.h up to 1.8
	external/mpl/bind/dist/lib/isc/netmgr/netmgr.c  up to 1.10
	external/mpl/bind/dist/lib/isc/netmgr/tcp.c     up to 1.8
	external/mpl/bind/dist/lib/isc/netmgr/tcpdns.c  up to 1.8
	external/mpl/bind/dist/lib/isc/netmgr/udp.c     up to 1.11
	external/mpl/bind/dist/lib/isc/tests/random_test.c up to 1.11
	external/mpl/bind/dist/lib/isc/tests/regex_test.c up to 1.12
	external/mpl/bind/dist/lib/isc/tests/socket_test.c up to 1.11
	external/mpl/bind/dist/lib/isc/tests/task_test.c up to 1.12
	external/mpl/bind/dist/lib/isc/tests/timer_test.c up to 1.10
	external/mpl/bind/dist/lib/isc/unix/file.c      up to 1.7
	external/mpl/bind/dist/lib/isc/unix/socket.c    up to 1.25
	external/mpl/bind/dist/lib/isc/win32/dir.c      up to 1.8
	external/mpl/bind/dist/lib/isc/win32/file.c     up to 1.9
	external/mpl/bind/dist/lib/isc/win32/fsaccess.c up to 1.8
	external/mpl/bind/dist/lib/isc/win32/interfaceiter.c up to 1.7
	external/mpl/bind/dist/lib/isc/win32/libisc.def.in up to 1.1.1.14
	external/mpl/bind/dist/lib/isc/win32/net.c      up to 1.8
	external/mpl/bind/dist/lib/isc/win32/ntgroups.c up to 1.9
	external/mpl/bind/dist/lib/isc/win32/socket.c   up to 1.13
	external/mpl/bind/dist/lib/isc/win32/include/isc/net.h up to 1.8
	external/mpl/bind/dist/lib/isccc/alist.c        up to 1.7
	external/mpl/bind/dist/lib/isccc/cc.c           up to 1.7
	external/mpl/bind/dist/lib/isccc/symtab.c       up to 1.7
	external/mpl/bind/dist/lib/isccfg/aclconf.c     up to 1.9
	external/mpl/bind/dist/lib/isccfg/namedconf.c   up to 1.14
	external/mpl/bind/dist/lib/isccfg/parser.c      up to 1.13
	external/mpl/bind/dist/lib/isccfg/include/isccfg/grammar.h up to 1.8
	external/mpl/bind/dist/lib/isccfg/tests/duration_test.c up to 1.7
	external/mpl/bind/dist/lib/ns/client.c          up to 1.18
	external/mpl/bind/dist/lib/ns/hooks.c           up to 1.9
	external/mpl/bind/dist/lib/ns/interfacemgr.c    up to 1.15
	external/mpl/bind/dist/lib/ns/query.c           up to 1.17
	external/mpl/bind/dist/lib/ns/server.c          up to 1.8
	external/mpl/bind/dist/lib/ns/sortlist.c        up to 1.7
	external/mpl/bind/dist/lib/ns/update.c          up to 1.13
	external/mpl/bind/dist/lib/ns/xfrout.c          up to 1.13
	external/mpl/bind/dist/lib/ns/include/ns/client.h up to 1.14
	external/mpl/bind/dist/lib/ns/include/ns/server.h up to 1.7
	external/mpl/bind/dist/lib/ns/include/ns/stats.h up to 1.7
	external/mpl/bind/dist/lib/ns/tests/nstest.c    up to 1.8
	external/mpl/bind/dist/lib/ns/win32/libns.def   up to 1.1.1.8
	external/mpl/bind/include/config.h              up to 1.15
	external/mpl/bind/include/dns/code.h            up to 1.8
	external/mpl/bind/include/dns/enumclass.h       up to 1.6
	external/mpl/bind/include/dns/enumtype.h        up to 1.8
	external/mpl/bind/include/dns/rdatastruct.h     up to 1.10
	external/mpl/bind/include/isc/stdatomic.h       up to 1.10
	external/mpl/bind/lib/libdns/Makefile           up to 1.9
	external/mpl/bind/lib/libisc/Makefile           up to 1.20
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_prepend_error_message.3 up to 1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/doxygen.svg up to 1.1.1.1
	crypto/external/bsd/heimdal/dist/windows/NTMakefile.sdk up to 1.1.1.1
	crypto/external/bsd/heimdal/include/hcrypto/ui.h up to 1.2
	crypto/external/bsd/heimdal/dist/cf/._ltoptions.m4 delete
	crypto/external/bsd/heimdal/dist/cf/._ltsugar.m4 delete
	crypto/external/bsd/heimdal/dist/cf/._lt~obsolete.m4 delete
	crypto/external/bsd/heimdal/dist/cf/broken-getaddrinfo.m4 delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/EVP_hcrypto_md2.3 delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/EVP_md2.3 delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/doxygen.png delete
	crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.c delete
	crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.h delete
	crypto/external/bsd/heimdal/Makefile.inc        up to 1.8
	crypto/external/bsd/heimdal/bin/Makefile.inc    up to 1.6
	crypto/external/bsd/heimdal/bin/gsstool/Makefile up to 1.4
	crypto/external/bsd/heimdal/bin/hxtool/Makefile up to 1.6
	crypto/external/bsd/heimdal/bin/kcc/Makefile    up to 1.6
	crypto/external/bsd/heimdal/bin/kdestroy/Makefile up to 1.5
	crypto/external/bsd/heimdal/bin/kgetcred/Makefile up to 1.5
	crypto/external/bsd/heimdal/bin/kinit/Makefile  up to 1.5
	crypto/external/bsd/heimdal/bin/kpasswd/Makefile up to 1.5
	crypto/external/bsd/heimdal/bin/kvno/Makefile   up to 1.4
	crypto/external/bsd/heimdal/bin/string2key/Makefile up to 1.5
	crypto/external/bsd/heimdal/bin/verify_krb5_conf/Makefile up to 1.5
	crypto/external/bsd/heimdal/dist/Makefile.in    up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/NEWS           up to 1.4
	crypto/external/bsd/heimdal/dist/aclocal.m4     up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/compile        up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/config.guess   up to 1.3
	crypto/external/bsd/heimdal/dist/config.sub     up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/configure      up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/configure.ac   up to 1.5
	crypto/external/bsd/heimdal/dist/depcomp        up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/install-sh     up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/ltmain.sh      up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/missing        up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/test-driver    up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/ylwrap         up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/admin/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/admin/add.c    up to 1.3
	crypto/external/bsd/heimdal/dist/admin/change.c up to 1.3
	crypto/external/bsd/heimdal/dist/cf/Makefile.am.common up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/cf/broken-realloc.m4 up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/cf/check-var.m4 up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/cf/db.m4       up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/cf/krb-ipv6.m4 up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/cf/libtool.m4  up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/cf/ltoptions.m4 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/cf/ltsugar.m4  up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/cf/ltversion.m4 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/cf/lt~obsolete.m4 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/cf/misc.m4     up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/cf/proto-compat.m4 up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/cf/retsigtype.m4 up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/cf/roken-frag.m4 up to 1.3
	crypto/external/bsd/heimdal/dist/cf/w32-hh-toc-from-info.pl up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/cf/with-all.m4 up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/doc/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/NTMakefile up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/doc/vars.texi  up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/group__heimbase.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/base/man/man3/heimbase.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/group__gssapi.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/gssapi_mechs_intro.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/gssapi_services_intro.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/internal_v_smechname.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/pages.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/man/man3/gssapi.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/man/man3/gssapi_mechs_intro.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/man/man3/gssapi_services_intro.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/man/man3/internal_v_smechname.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/example_evp_cipher_8c-example.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/examples.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__core.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__des.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__dh.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__evp.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__misc.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__rand.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/group__hcrypto__rsa.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/page_des.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/page_dh.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/page_evp.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/page_rand.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/page_rsa.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/pages.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_core.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_des.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_dh.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_evp.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_misc.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_rand.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/hcrypto_rsa.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/page_des.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/page_dh.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/page_evp.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/page_rand.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/man/man3/page_rsa.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/annotated.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/classes.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/functions.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/functions_vars.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/struct_h_d_b.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/structhdb__entry__ex.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/man/man3/HDB.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/man/man3/hdb_entry_ex.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__ca.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__cert.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__cms.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__crypto.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__env.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__error.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__keyset.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__lock.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__misc.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__name.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__peer.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__print.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__query.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__revoke.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/group__hx509__verify.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_ca.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_cert.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_cms.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_env.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_error.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_keyset.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_lock.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_name.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_peer.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_print.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/page_revoke.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/pages.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_ca.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_cert.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_cms.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_crypto.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_env.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_error.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_keyset.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_lock.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_misc.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_name.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_peer.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_print.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_query.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_revoke.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/hx509_verify.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_ca.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_cert.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_cms.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_env.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_error.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_keyset.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_lock.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_name.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_peer.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_print.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/man/man3/page_revoke.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/annotated.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/classes.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__address.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__auth.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__ccache.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__credential.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__crypto.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__deprecated.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__digest.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__error.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__keytab.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__pac.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__principal.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__storage.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__support.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__ticket.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/group__krb5__v4compat.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/krb5_ccache_intro.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/krb5_fileformats.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/krb5_init_creds_intro.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/krb5_introduction.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/krb5_keytab_intro.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/krb5_principal_intro.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/pages.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/structkrb5__crypto__iov.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/structkrb5plugin__an2ln__ftable__desc.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/structkrb5plugin__db__ftable__desc.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/structkrb5plugin__kuserok__ftable__desc.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_address.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_auth.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_ccache.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_ccache_intro.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_credential.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_crypto.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_crypto_iov.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_deprecated.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_digest.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_error.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_fileformats.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_init_creds_intro.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_introduction.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_keytab.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_keytab_intro.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_pac.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_principal.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_principal_intro.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_storage.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_support.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_ticket.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5_v4compat.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5plugin_an2ln_ftable_desc.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5plugin_db_ftable_desc.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/man/man3/krb5plugin_kuserok_ftable_desc.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/annotated.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/classes.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/examples.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/functions.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/functions_vars.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/group__ntlm__core.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__buf.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type1.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type2.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type2__coll__graph.map up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type2__coll__graph.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type2__coll__graph.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type3.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type3__coll__graph.map up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type3__coll__graph.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/structntlm__type3__coll__graph.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/test_ntlm_8c-example.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/man/man3/ntlm_buf.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/man/man3/ntlm_core.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/man/man3/ntlm_type1.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/man/man3/ntlm_type2.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/man/man3/ntlm_type3.3 up to 1.3
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/manpages up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/doxygen.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/dynsections.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/graph_legend.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/graph_legend.md5 up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/graph_legend.png up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/group__wind.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/index.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/jquery.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/menu.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/menudata.js up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/modules.html up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/tabs.css up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/doc/doxyout/wind/man/man3/wind.3 up to 1.3
	crypto/external/bsd/heimdal/dist/etc/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/include/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/include/bits.c up to 1.4
	crypto/external/bsd/heimdal/dist/include/config.h.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/include/config.h.w32 up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/include/crypto-headers.h up to 1.6
	crypto/external/bsd/heimdal/dist/include/gssapi/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.am up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/include/kadm5/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/kadmin/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/kadmin/ank.c   up to 1.3
	crypto/external/bsd/heimdal/dist/kadmin/cpw.c   up to 1.4
	crypto/external/bsd/heimdal/dist/kadmin/ext.c   up to 1.3
	crypto/external/bsd/heimdal/dist/kadmin/kadmind.c up to 1.3
	crypto/external/bsd/heimdal/dist/kadmin/mod.c   up to 1.3
	crypto/external/bsd/heimdal/dist/kadmin/rpc.c   up to 1.4
	crypto/external/bsd/heimdal/dist/kadmin/stash.c up to 1.3
	crypto/external/bsd/heimdal/dist/kcm/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/kcm/cache.c    up to 1.6
	crypto/external/bsd/heimdal/dist/kcm/config.c   up to 1.4
	crypto/external/bsd/heimdal/dist/kcm/protocol.c up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/kdc/connect.c  up to 1.5
	crypto/external/bsd/heimdal/dist/kdc/default_config.c up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/digest.c   up to 1.5
	crypto/external/bsd/heimdal/dist/kdc/hpropd.c   up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/kdc-private.h up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/kdc-replay.c up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/kdc.8      up to 1.6
	crypto/external/bsd/heimdal/dist/kdc/kdc.h      up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/kerberos5.c up to 1.9
	crypto/external/bsd/heimdal/dist/kdc/krb5tgs.c  up to 1.4
	crypto/external/bsd/heimdal/dist/kdc/kstash.c   up to 1.3
	crypto/external/bsd/heimdal/dist/kdc/pkinit.c   up to 1.6
	crypto/external/bsd/heimdal/dist/kdc/windc_plugin.h up to 1.3
	crypto/external/bsd/heimdal/dist/kpasswd/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.c up to 1.3
	crypto/external/bsd/heimdal/dist/kuser/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/kuser/kdestroy.c up to 1.3
	crypto/external/bsd/heimdal/dist/kuser/kgetcred.c up to 1.4
	crypto/external/bsd/heimdal/dist/kuser/kinit.1  up to 1.6
	crypto/external/bsd/heimdal/dist/kuser/kinit.c  up to 1.5
	crypto/external/bsd/heimdal/dist/kuser/kswitch.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/asn1/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/check-common.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/check-common.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/check-der.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/check-gen.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/check-template.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/der_cmp.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/der_copy.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/der_get.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/der_length.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/der_put.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/gen_copy.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/gen_decode.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/gen_free.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/asn1/krb5.asn1 up to 1.1.1.6
	crypto/external/bsd/heimdal/dist/lib/asn1/lex.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/base/Makefile.am up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/base/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/base/bsearch.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/base/dll.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/base/heimbase.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/com_err/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/com_err/lex.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/com_err/parse.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/com_err/parse.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/gssapi/test_context.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/accept_sec_context.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/acquire_cred.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/arcfour.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/cfx.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/decapsulate.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/delete_sec_context.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/display_status.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/get_mic.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/gsskrb5-private.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/init_sec_context.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/unwrap.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/verify_mic.c up to 1.7
	crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/wrap.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_status.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_name.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mech_switch.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gssapi.asn1 up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech_locl.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/init_sec_context.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/accept_sec_context.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.am up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/hcrypto/NTMakefile up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/des.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.h up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hcrypto/example_evp_cipher.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hcrypto/libhcrypto-exports.def up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/mdtest.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs5.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bulk.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/test_cipher.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/undef.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hcrypto/version-script.map up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/lib/hdb/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mitdb.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hdb/keytab.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.am up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/hx509/cert.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/hx509/cms.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hx509/crypto.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hx509/file.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hx509/hxtool.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/hx509/ks_file.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/hx509/name.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/hx509/test_nist_pkcs12.in up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/lib/ipc/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/ipc/client.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.am up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/kadm5/get_s.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/init_c.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_master.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_slave.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5-private.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_locl.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/libkadm5srv-exports.def up to 1.1.1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/log.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/set_keys.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/kadm5/test_pw_quality.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kadm5/version-script.map up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/lib/kafs/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/kafs/afskrb5.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kafs/afssysdefs.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/kafs/rxkad_kdf.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/kdfs/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/krb5/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/krb5/acl.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/addr_families.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/aes-test.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/krb5/context.c up to 1.7
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha1.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto-arcfour.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des-common.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des3.c up to 1.7
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto-evp.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/krb5/crypto.h up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/deprecated.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/enomem.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/get_cred.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/init_creds_pw.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/keytab.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/krb5-plugin.7 up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/krb5.conf.5 up to 1.7
	crypto/external/bsd/heimdal/dist/lib/krb5/krb5.h up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/krb5_ccapi.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/krbhst.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/locate_plugin.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/mcache.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/pac.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/plugin.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/principal.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/rd_req.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha2.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/salt-des.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/salt-des3.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c up to 1.9
	crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc_plugin.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/store_emem.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/test_plugin.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/test_store.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/krb5/ticket.c up to 1.6
	crypto/external/bsd/heimdal/dist/lib/krb5/transited.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/ntlm/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm.c up to 1.5
	crypto/external/bsd/heimdal/dist/lib/otp/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/roken/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/roken/getaddrinfo.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c up to 1.4
	crypto/external/bsd/heimdal/dist/lib/roken/ndbm_wrap.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/roken/net_write.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in up to 1.7
	crypto/external/bsd/heimdal/dist/lib/roken/snprintf.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/roken/strtoll.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/roken/strtoull.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/sl/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/sl/sl.c    up to 1.3
	crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/sl/slc-lex.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/vers/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/wind/Makefile.am up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/lib/wind/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/lib/wind/bidi_table.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/bidi_table.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/combining_table.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/combining_table.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/errorlist_table.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/errorlist_table.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/idn-lookup.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/map_table.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/map_table.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/normalize.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/normalize_table.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/normalize_table.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/punycode_examples.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/punycode_examples.h up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/test-normalize.c up to 1.3
	crypto/external/bsd/heimdal/dist/lib/wind/utf8.c up to 1.3
	crypto/external/bsd/heimdal/dist/packages/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/packages/mac/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/packages/windows/installer/NTMakefile up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-installer.wxs up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/po/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/bin/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/can/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/db/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/gss/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/gss/check-context.in up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/tests/java/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/kdc/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/kdc/check-iprop.in up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/tests/kdc/check-kdc.in up to 1.1.1.5
	crypto/external/bsd/heimdal/dist/tests/ldap/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tests/plugin/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/tools/Makefile.in up to 1.1.1.2
	crypto/external/bsd/heimdal/dist/windows/NTMakefile.version up to 1.1.1.4
	crypto/external/bsd/heimdal/dist/windows/NTMakefile.w32 up to 1.1.1.5
	crypto/external/bsd/heimdal/include/config.h    up to 1.11
	crypto/external/bsd/heimdal/include/kdc-private.h up to 1.5
	crypto/external/bsd/heimdal/lib/libgssapi/Makefile up to 1.7
	crypto/external/bsd/heimdal/lib/libhdb/Makefile up to 1.5
	crypto/external/bsd/heimdal/lib/libheimntlm/Makefile up to 1.5
	crypto/external/bsd/heimdal/lib/libhx509/Makefile up to 1.10
	crypto/external/bsd/heimdal/lib/libkadm5clnt/Makefile up to 1.5
	crypto/external/bsd/heimdal/lib/libkadm5srv/Makefile up to 1.6
	crypto/external/bsd/heimdal/lib/libkafs/Makefile up to 1.5
	crypto/external/bsd/heimdal/lib/libkdc/Makefile up to 1.6
	crypto/external/bsd/heimdal/lib/libkrb5/Makefile up to 1.15
	crypto/external/bsd/heimdal/lib/libvers/Makefile up to 1.3
	crypto/external/bsd/heimdal/libexec/Makefile.inc up to 1.8
	crypto/external/bsd/heimdal/libexec/digest-service/Makefile up to 1.5
	crypto/external/bsd/heimdal/libexec/hpropd/Makefile up to 1.5
	crypto/external/bsd/heimdal/libexec/ipropd-master/Makefile up to 1.5
	crypto/external/bsd/heimdal/libexec/ipropd-slave/Makefile up to 1.5
	crypto/external/bsd/heimdal/libexec/kadmind/Makefile up to 1.7
	crypto/external/bsd/heimdal/libexec/kpasswdd/Makefile up to 1.5
	crypto/external/bsd/heimdal/sbin/Makefile.inc   up to 1.7
	crypto/external/bsd/heimdal/sbin/hprop/Makefile up to 1.5
	crypto/external/bsd/heimdal/sbin/iprop-log/Makefile up to 1.5
	crypto/external/bsd/heimdal/sbin/kadmin/Makefile up to 1.6
	crypto/external/bsd/heimdal/sbin/kcm/Makefile   up to 1.5
	crypto/external/bsd/heimdal/sbin/kdc/Makefile   up to 1.5
	crypto/external/bsd/heimdal/sbin/kdigest/Makefile up to 1.6
	crypto/external/bsd/heimdal/sbin/kimpersonate/Makefile up to 1.5
	crypto/external/bsd/heimdal/sbin/kstash/Makefile up to 1.5
	crypto/external/bsd/heimdal/sbin/ktutil/Makefile up to 1.6
	crypto/external/bsd/openssl/bin/progs.c         up to 1.1
	crypto/external/bsd/openssl/lib/engines/dasync/dasync.map up to 1.3
	crypto/external/bsd/openssl/lib/engines/ossltest/ossltest.map up to 1.3
	crypto/external/bsd/openssl/lib/engines/padlock/padlock.map up to 1.3
	crypto/external/bsd/openssl/lib/engines/devcrypto/Makefile up to 1.3
	crypto/external/bsd/openssl/lib/engines/devcrypto/devcrypto.map up to 1.3
	crypto/external/bsd/openssl/lib/engines/loader_attic/Makefile up to 1.3
	crypto/external/bsd/openssl/lib/engines/loader_attic/loader_attic.map up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/aes-gcm-armv8_64.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/alpha/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aes-gcm-armv8_64.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ec.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/hppa/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/ia64/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/m68k/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/mips/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/ec.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/ecp_nistp521-ppc64.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/ppc64-mont-fixed.S up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/ecp_nistp521-ppc64.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/ppc64-mont-fixed.S up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/sh3/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sha256-sparcv9.S up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/vax/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/rsaz-avx512.S up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/riscv32/crypto.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/riscv32/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/arch/riscv64/ec.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/ess.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/libc-sha1.c up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/mkinc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_EXTERN_FUNCS.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_INTEGER_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_aux_cb.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_item_d2i_bio.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_item_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_item_sign.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_prefix.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_readbuffer.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_core.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_datagram.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_socket_wait.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_exp_mont.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_EncryptedData_decrypt.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_EncryptedData_encrypt.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_EnvelopedData_create.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_data_create.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_digest_create.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/CRYPTO_memcmp.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/ECDSA_sign.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ASYM_CIPHER-RSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ASYM_CIPHER-SM2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ASYM_CIPHER_free.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-AES.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-ARIA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-BLOWFISH.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-CAMELLIA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-CAST.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-CHACHA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-DES.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-IDEA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-NULL.7 up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-RC2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-RC4.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-RC5.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-SEED.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-SM4.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER_CTX_get_original_iv.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-HKDF.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-KB.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-KRB5KDF.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-PBKDF1.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-PBKDF2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-SS.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-PKCS12KDF.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-SCRYPT.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-SSHKDF.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-TLS13_KDF.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-TLS1_PRF.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-X942-ASN1.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-X942-CONCAT.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-X963.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEM-RSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEM_free.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH-DH.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH-ECDH.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH-X25519.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH_free.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYMGMT.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-BLAKE2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-CMAC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-GMAC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-HMAC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-KMAC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-Poly1305.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-Siphash.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-BLAKE2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD4.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD5-SHA1.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD5.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MDC2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-NULL.7 up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-RIPEMD160.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHA1.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHA2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHA3.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHAKE.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SM3.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-WHIRLPOOL.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-common.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PBE_CipherInit.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-DH.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-DSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-EC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-FFC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-HMAC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-RSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-SM2.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-X25519.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY2PKCS8.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_get0_libctx.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_get0_pkey.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_params.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_check.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_copy_parameters.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_decapsulate.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_digestsign_supports_digest.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_encapsulate.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_fromdata.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_field_type.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_group_name.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_size.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_gettable_params.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_is_a.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_set1_encoded_public_key.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_set_type.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_settable_params.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_todata.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-CTR-DRBG.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-HASH-DRBG.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-HMAC-DRBG.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-SEED-SRC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-TEST-RAND.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-DSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-ECDSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-ED25519.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-HMAC.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-RSA.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_aes_128_gcm.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_aria_128_gcm.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_camellia_128_ecb.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_des_cbc.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_set_default_properties.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/NCONF_new_ex.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_FILE.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_gmtime.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_hexchar2int.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_s390xcap.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_strcasecmp.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ALGORITHM.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CALLBACK.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_CTX_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_HDR_get0_transactionID.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_ITAV_set0.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_MSG_get0_header.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_MSG_http_perform.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_SRV_CTX_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_STATUSINFO_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_exec_certreq.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_log_open.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_validate_msg.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CORE_MAKE_FUNC.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_get0_tmpl.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_set0_validity.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_set1_regCtrl_regToken.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_set1_regInfo_certReq.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_pbmp_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER_CTX.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER_CTX_new_for_pkey.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER_from_bio.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DISPATCH.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER_CTX.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER_CTX_new_for_pkey.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER_to_bio.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ESS_check_signing_certs.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_HTTP_REQ_CTX.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ITEM.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_HTTP_parse_url.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_HTTP_transfer.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_LIB_CTX.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_BLD.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_allocate_from_text.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_dup.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_int.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-FIPS.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-base.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-default.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-legacy.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-null.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_SELF_TEST_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_SELF_TEST_set_callback.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_cmp.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_attach.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_trace_enabled.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_trace_get_category_num.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_trace_set_channel.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/OpenSSL_version.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_X509_INFO_read_bio_ex.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_PBE_keyivgen.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_SAFEBAG_create_cert.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_SAFEBAG_get0_attrs.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_SAFEBAG_get1_cert.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add1_attr_by_NID.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_CSPName_asc.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_cert.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_friendlyname_asc.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_safe.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_localkeyid.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_decrypt_skey.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_gen_mac.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_get_friendlyname.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_init.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_item_decrypt_d2i.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_key_gen_utf8_ex.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_pack_p7encdata.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS5_PBE_keyivgen.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_get_octet_string.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_type_is_other.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS8_encrypt.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS8_pkey_add1_attr.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_get0_primary.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_set_DRBG_type.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_read_ASN1.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_write_ASN1.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_Calc_B.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_VBASE_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_create_verifier.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_user_pwd_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_srp_password.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tmp_ecdh.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_certificate.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_group_to_name.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_async_callback.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_retry_verify.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/TS_RESP_CTX_new.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/TS_VERIFY_CTX_set_certs.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509V3_set_ctx.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_LOOKUP.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_add_cert.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_purpose.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_distinguishing_id.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_load_http.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_verify.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/b2i_PVK_bio_ex.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_RSAPrivateKey.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/fips_config.5 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/fips_module.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-cipher.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-digest.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-kdf.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-mac.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-pkey.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-rand.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/migration_guide.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-core.h.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-core_dispatch.h.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-core_names.h.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-env.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-format-options.1 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-glossary.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-namedisplay-options.1 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-passphrase-options.1 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-threads.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-verification-options.1 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/property.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-asym_cipher.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-base.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-cipher.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-decoder.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-digest.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-encoder.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-kdf.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-kem.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-keyexch.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-keymgmt.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-mac.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-object.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-rand.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-signature.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-storemgmt.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/provider.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/proxy-certificates.7 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/s2i_ASN1_IA5STRING.3 up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/ffc.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/PROTO.in up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/cmp.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/crmf.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/encode_decode.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/gen   up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/http.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/property.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcrypto/providers.inc up to 1.1
	crypto/external/bsd/openssl/lib/libapps/Makefile up to 1.6
	crypto/external/bsd/openssl/lib/libapps/PROTO.in up to 1.1
	crypto/external/bsd/openssl/lib/libapps/apps_lib.inc up to 1.1
	crypto/external/bsd/openssl/lib/libapps/mkinc   up to 1.1
	crypto/external/bsd/openssl/lib/libapps/srcs.inc up to 1.1
	crypto/external/bsd/openssl/lib/Makefile.subdir up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/Makefile up to 1.5
	crypto/external/bsd/openssl/lib/libcommon/PROTO.in up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/der_digests_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/der_dsa_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/der_ec_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/der_ecx_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/der_rsa_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/der_wrap_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/mkinc up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/providers_common.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/providers_common_der.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/providers_implementations_ciphers.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/providers_implementations_digests.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/srcs.inc up to 1.1
	crypto/external/bsd/openssl/lib/libcommon/ssl_record.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_digests.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_dsa.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_ec.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_ecx.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_rsa.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_sm2.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/prov/der_wrap.h up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/Makefile up to 1.6
	crypto/external/bsd/openssl/lib/libdefault/PROTO.in up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/der_sm2_gen.c up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/mkinc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_common.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_common_der.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_asymciphers.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_ciphers.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_digests.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_encode_decode.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_exchange.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_kdfs.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_kem.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_keymgmt.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_macs.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_rands.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_rands_seeding.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_signature.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/providers_implementations_storemgmt.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/srcs.inc up to 1.1
	crypto/external/bsd/openssl/lib/libdefault/ssl.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/Makefile up to 1.7
	crypto/external/bsd/openssl/lib/liblegacy/PROTO.in up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/crypto.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/crypto_des.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/crypto_md5.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/legacy.map up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/mkinc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/providers.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/providers_common.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/providers_implementations_ciphers.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/providers_implementations_digests.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/providers_implementations_kdfs.inc up to 1.1
	crypto/external/bsd/openssl/lib/liblegacy/srcs.inc up to 1.1
	crypto/external/bsd/openssl/dist/AUTHORS.md     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/CONTRIBUTING.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/FAQ.md         up to 1.1.1.1
	crypto/external/bsd/openssl/dist/INSTALL.md     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/LICENSE.txt    up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NEWS.md        up to 1.1.1.2
	crypto/external/bsd/openssl/dist/README-ENGINES.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/README-FIPS.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/README-PROVIDERS.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/README.md      up to 1.1.1.1
	crypto/external/bsd/openssl/dist/SUPPORT.md     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/VERSION.dat    up to 1.1.1.2
	crypto/external/bsd/openssl/dist/configdata.pm.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/BASE.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/AIX.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/Windows/MSVC.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/Windows/cppbuilder.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/Cygwin.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/Unix.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/VMS.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/Windows.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform/mingw.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/gentemplate.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/50-cppbuilder.conf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/50-nonstop.conf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/50-os390.conf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/50-vms-x86_64.conf up to 1.1.1.2
	crypto/external/bsd/openssl/dist/Configurations/README-design.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/Configurations/platform.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/asn1parse.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/cmp.c     up to 1.3
	crypto/external/bsd/openssl/dist/apps/crl2pkcs7.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/app_libctx.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/app_params.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/app_provider.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/app_rand.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/app_x509.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/apps.c up to 1.4
	crypto/external/bsd/openssl/dist/apps/lib/apps_ui.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/cmp_mock_srv.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/apps/lib/columns.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/engine.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/engine_loader.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/fmt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/http_server.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/names.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/opt.c up to 1.2
	crypto/external/bsd/openssl/dist/apps/lib/s_cb.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/s_socket.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/tlssrp_depr.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/vms_decc_argv.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/vms_term_sock.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/lib/win32_init.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/info.c    up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/fipsinstall.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/insta.ca.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/__DECC_INCLUDE_EPILOGUE.H up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/__DECC_INCLUDE_PROLOGUE.H up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/app_libctx.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/app_params.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/apps.h up to 1.2
	crypto/external/bsd/openssl/dist/apps/include/apps_ui.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/cmp_mock_srv.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/apps/include/ec_common.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/engine_loader.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/fmt.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/function.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/http_server.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/names.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/opt.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/platform.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/s_apps.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/include/vms_term_sock.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/kdf.c     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/list.c    up to 1.1.1.1
	crypto/external/bsd/openssl/dist/apps/mac.c     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/packet.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/params.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/provider.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_asn.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_client.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_ctx.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_err.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_hdr.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_http.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_msg.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_protect.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_server.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_status.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_util.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cmp/cmp_vfy.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ess/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ess/ess_asn1.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ess/ess_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ess/ess_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_parse.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/asn1/d2i_param.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/asn1/i2d_evp.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bf_prefix.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bf_readbuff.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bio_addr.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bio_dump.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bio_print.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bio_sock.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bio_sock2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/bss_core.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bio/ossl_core_bio.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bn/asm/ppc64-mont-fixed.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bn/asm/rsaz-avx512.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bn/rsaz_exp_x2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bn/bn_conv.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bn/bn_ppc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bn/bn_rsa_fips186_4.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/bn/bn_sparc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-ia64.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/chacha/chacha_ppc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cms/cms_dh.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cms/cms_ec.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cms/cms_rsa.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/dh/dh_backend.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/dh/dh_group_params.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_backend.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_check.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistp521-ppc64.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_32/f_impl32.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_64/arch_intrinsics.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_64/f_impl.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_64/f_impl64.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ec_backend.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ec_deprecated.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_ppc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_s390x_nistp.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ecx_backend.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ecx_backend.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ecx_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ec/ecx_s390x.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/engine/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/err/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/err/err_all_legacy.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/err/err_blocks.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/err/err_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/mac_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/mac_meth.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/p_legacy.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/pmeth_check.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/signature.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/asymcipher.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/ctrl_params_translate.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/evp/dh_ctrl.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/dh_support.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/dsa_ctrl.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/ec_ctrl.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/evp/ec_support.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/evp_fetch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/kem.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/evp_rand.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/evp_utils.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/exchange.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/kdf_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/kdf_meth.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/keymgmt_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/keymgmt_meth.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_blake2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_md2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_md4.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_md5.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_md5_sha1.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_mdc2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_meth.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_ripemd.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_sha.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/evp/legacy_wp.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/md5/md5_sha1.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/modes/asm/aes-gcm-armv8_64.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/modes/siv128.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/objects/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/objects/obj_compat.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_http.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/pem/pem_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/perlasm/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/perlasm/s390x.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/perlasm/x86_64-support.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-ia64.S up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305_ppc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rand/prov_seed.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rand/rand_deprecated.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rand/rand_meth.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rand/rand_pool.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_acvp_test_params.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_backend.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_mp_names.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_schemes.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_sp800_56b_check.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_sp800_56b_gen.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/sha/sha_ppc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/sha/sha3.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/sm2/sm2_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/sm3/legacy_sm3.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/store/store_meth.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/store/store_result.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/by_store.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/ext_dat.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_cache.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_data.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_map.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_node.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/x509/pcy_tree.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/x509/standard_exts.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_addr.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_admis.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_admis.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_akeya.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_akid.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_asid.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_bcons.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_bitst.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_conf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_cpols.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_crld.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_enum.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_extku.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_genn.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_ia5.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_info.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_int.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_ist.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_ncons.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_pci.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_pcia.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_pcons.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_pku.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_pmaps.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_prn.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_purp.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_san.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_skid.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_sxnet.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_tlsf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_utf8.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3_utl.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/v3err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/x509/x509_trust.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/sparse_array.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/asn1_dsa.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/README-sparse_array.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/bsearch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/context.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/core_algorithm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/core_fetch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/core_namemap.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/cpuid.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/der_writer.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/info.c  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/initthread.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/param_build.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/param_build_set.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/params_dup.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/params_from_text.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/passphrase.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/provider_child.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/provider_conf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/provider_core.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/provider_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/provider_predefined.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/punycode.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/self_test_core.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/threads_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/trace.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/crmf/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/crmf/crmf_asn.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/crmf/crmf_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/crmf/crmf_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/crmf/crmf_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/crmf/crmf_pbm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/decoder_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/decoder_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/decoder_meth.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/decoder_pkey.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/encoder_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/encoder_lib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/encoder_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/encoder_meth.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/encode_decode/encoder_pkey.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ffc/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_backend.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_dh.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_key_generate.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_key_validate.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_params.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_params_generate.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/ffc/ffc_params_validate.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/http/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/http/http_client.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/http/http_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/http/http_lib.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/property/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/defn_cache.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/property.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/property/property_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/property_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/property_parse.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/property_query.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/crypto/property/property_string.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/bio/README.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/certs/README.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/cipher/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/cipher/aesccm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/cipher/aesgcm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/cipher/aeskeywrap.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/cipher/ariacbc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/README.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/digest/BIO_f_md.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/digest/EVP_MD_demo.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/digest/EVP_MD_stdin.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/digest/EVP_MD_xof.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/digest/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/encode/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/encode/ec_encode.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/encode/rsa_encode.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/kdf/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/kdf/hkdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/kdf/pbkdf2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/kdf/scrypt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/keyexch/x25519.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/mac/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/mac/cmac-aes256.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/mac/gmac.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/mac/hmac-sha512.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/mac/poly1305.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/mac/siphash.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/EVP_PKEY_DSA_keygen.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/EVP_PKEY_DSA_paramfromdata.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/EVP_PKEY_DSA_paramgen.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/EVP_PKEY_DSA_paramvalidate.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/EVP_PKEY_EC_keygen.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/EVP_PKEY_RSA_keygen.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/pkey/dsa.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/signature/EVP_Signature_demo.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/signature/EVP_Signature_demo.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/signature/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/signature/rsa_pss.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/signature/rsa_pss_direct.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/demos/signature/rsa_pss_hash.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-asn1parse.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-ca.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-ciphers.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-cmds.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-cmp.pod.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man1/openssl-cms.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-crl.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-crl2pkcs7.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-dgst.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-dhparam.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-dsa.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-dsaparam.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-nseq.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-ec.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-ecparam.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-enc.pod.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man1/openssl-engine.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-errstr.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-fipsinstall.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-format-options.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-gendsa.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-genpkey.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-genrsa.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-info.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-kdf.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-list.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-mac.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-namedisplay-options.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-ocsp.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-passphrase-options.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-passwd.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-pkcs12.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-pkcs7.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-pkcs8.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-pkey.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-pkeyparam.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-pkeyutl.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-prime.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-rand.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-rehash.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-req.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-rsa.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-rsautl.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-s_client.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-s_server.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-s_time.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-sess_id.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-smime.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-speed.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-spkac.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-srp.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-storeutl.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-ts.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-verification-options.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-verify.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-version.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man1/openssl-x509.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_is_a.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_des_cbc.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/NCONF_new_ex.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_gmtime.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ITEM.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SMIME_read_ASN1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SMIME_write_ASN1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SRP_Calc_B.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SRP_VBASE_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/X509_verify.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/RAND_get0_primary.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/RAND_set_DRBG_type.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_certificate.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SSL_group_to_name.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ERR_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_todata.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_PARAM.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_EXTERN_FUNCS.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_INTEGER_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_aux_cb.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_core.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_item_d2i_bio.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_item_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_item_sign.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_prefix.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_readbuffer.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_datagram.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/BIO_socket_wait.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/BN_mod_exp_mont.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/CMS_EncryptedData_decrypt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_EncryptedData_encrypt.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/CMS_EnvelopedData_create.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/CMS_data_create.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/CMS_digest_create.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/ECDSA_sign.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_ASYM_CIPHER_free.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_KDF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_MAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_CIPHER_CTX_get_original_iv.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_KEM_free.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_KEYEXCH_free.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_KEYMGMT.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PBE_CipherInit.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY2PKCS8.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_get0_libctx.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_get0_pkey.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_set_params.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_check.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_copy_parameters.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_decapsulate.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_digestsign_supports_digest.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_encapsulate.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_RAND.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_fromdata.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_get_field_type.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_get_group_name.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_get_size.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_gettable_params.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_set1_encoded_public_key.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_set_type.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_settable_params.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_SIGNATURE.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/EVP_aes_128_gcm.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_aria_128_gcm.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_camellia_128_ecb.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_set_default_properties.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_FILE.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_init.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_hexchar2int.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_s390xcap.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_strcasecmp.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ALGORITHM.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CALLBACK.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_CTX_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_HDR_get0_transactionID.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_ITAV_set0.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_MSG_get0_header.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_MSG_http_perform.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_SRV_CTX_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_STATUSINFO_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_exec_certreq.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_log_open.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CORE_MAKE_FUNC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CMP_validate_msg.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CRMF_MSG_get0_tmpl.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CRMF_MSG_set0_validity.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CRMF_MSG_set1_regCtrl_regToken.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CRMF_MSG_set1_regInfo_certReq.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_CRMF_pbmp_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_DECODER.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_DECODER_CTX.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_DECODER_CTX_new_for_pkey.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_DECODER_from_bio.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_DISPATCH.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ENCODER.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ENCODER_CTX.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ENCODER_CTX_new_for_pkey.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ENCODER_to_bio.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_ESS_check_signing_certs.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_HTTP_REQ_CTX.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_HTTP_parse_url.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_HTTP_transfer.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_LIB_CTX.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_PARAM_BLD.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_PARAM_allocate_from_text.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_PARAM_dup.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_PARAM_int.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_PROVIDER.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_SELF_TEST_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_SELF_TEST_set_callback.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_STORE_attach.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_trace_enabled.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_trace_get_category_num.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_trace_set_channel.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/OpenSSL_version.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PEM_X509_INFO_read_bio_ex.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_PBE_keyivgen.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_SAFEBAG_create_cert.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_SAFEBAG_get0_attrs.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_SAFEBAG_get1_cert.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_add1_attr_by_NID.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_add_CSPName_asc.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_add_cert.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_add_friendlyname_asc.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_add_localkeyid.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_add_safe.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_decrypt_skey.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_gen_mac.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_get_friendlyname.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_item_decrypt_d2i.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_key_gen_utf8_ex.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_pack_p7encdata.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS5_PBE_keyivgen.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_get_octet_string.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_type_is_other.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS8_encrypt.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/PKCS8_pkey_add1_attr.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SRP_create_verifier.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SRP_user_pwd_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_srp_password.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_tmp_ecdh.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_async_callback.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_retry_verify.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/TS_RESP_CTX_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/TS_VERIFY_CTX_set_certs.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/X509V3_set_ctx.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/X509_add_cert.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/X509_get0_distinguishing_id.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/X509_load_http.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/b2i_PVK_bio_ex.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/d2i_RSAPrivateKey.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man3/s2i_ASN1_IA5STRING.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man5/fips_config.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/fips_module.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/life_cycle-cipher.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_ASYM_CIPHER-RSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_ASYM_CIPHER-SM2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-AES.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-ARIA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-BLOWFISH.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-CAMELLIA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-CAST.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-CHACHA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-DES.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-IDEA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-NULL.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-RC2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-RC4.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-RC5.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-SEED.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_CIPHER-SM4.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-HKDF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-KB.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-KRB5KDF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-PBKDF1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-PBKDF2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-PKCS12KDF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-SCRYPT.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-SS.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-SSHKDF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-TLS13_KDF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-TLS1_PRF.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-X942-ASN1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-X942-CONCAT.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KDF-X963.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KEM-RSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KEYEXCH-DH.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KEYEXCH-ECDH.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_KEYEXCH-X25519.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-BLAKE2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-CMAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-GMAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-HMAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-KMAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-Poly1305.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MAC-Siphash.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-BLAKE2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-MD2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-MD4.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-MD5-SHA1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-MD5.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-MDC2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-NULL.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-RIPEMD160.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-SHA1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-SHA2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-SHA3.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-SHAKE.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-SM3.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-WHIRLPOOL.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_MD-common.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-DH.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-DSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-EC.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-FFC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-HMAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-RSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-SM2.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_PKEY-X25519.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_RAND-CTR-DRBG.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_RAND-HASH-DRBG.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_RAND-HMAC-DRBG.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_RAND-SEED-SRC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_RAND-TEST-RAND.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_RAND.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_SIGNATURE-DSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_SIGNATURE-ECDSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_SIGNATURE-ED25519.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/img/cipher.png up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/img/digest.png up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/img/kdf.png up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/img/mac.png up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/img/pkey.png up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/img/rand.png up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_SIGNATURE-HMAC.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/EVP_SIGNATURE-RSA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/OSSL_PROVIDER-FIPS.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/OSSL_PROVIDER-base.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/OSSL_PROVIDER-default.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/OSSL_PROVIDER-legacy.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/OSSL_PROVIDER-null.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/life_cycle-digest.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/life_cycle-kdf.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/life_cycle-mac.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/life_cycle-pkey.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/life_cycle-rand.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/migration_guide.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/openssl-core.h.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/openssl-core_dispatch.h.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/openssl-core_names.h.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/openssl-env.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/openssl-glossary.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/openssl-threads.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/openssl_user_macros.pod.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/property.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-asym_cipher.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-base.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-cipher.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-decoder.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-digest.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-encoder.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-kdf.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-kem.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-keyexch.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-keymgmt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-mac.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-object.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-rand.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider-signature.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/provider-storemgmt.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/man7/provider.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/README.md  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/build.info.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/perlvars.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/images/openssl.svg up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/OPENSSL_SA.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/OPTIONS.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/OSSL_DEPRECATED.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/OSSL_METHOD_STORE.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/cms_add1_signing_cert.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/evp_generic_fetch.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/evp_keymgmt_newdata.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/evp_keymgmt_util_export_to_provider.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/evp_md_get_number.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/evp_pkey_export_to_provider.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/evp_pkey_get1_ED25519.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_DER_w_begin_sequence.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_DER_w_bn.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_DER_w_precompiled.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_algorithm_do_all.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_X509_STORE_add1_certs.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_asn1_octet_string_set1.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_certreq_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_ctx_set1_caPubs.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_hdr_init.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_mock_srv_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_msg_check_update.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_msg_create.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_msg_protect.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_pkisi_get_status.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_cmp_print_log.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_ends_with_dirsep.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_global_properties_no_mirrored.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_init_thread_deregister.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_lib_ctx_get_data.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_method_construct.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_namemap_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_provider_add_conf_module.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_provider_new.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_punycode_decode.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_rand_get_entropy.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_random_add_conf_module.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/ossl_rsa_get0_all_params.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man3/x509v3_cache_extensions.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man7/DERlib.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man7/EVP_PKEY.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man7/VERSION.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man7/build.info.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/internal/man7/deprecation.pod up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/Makefile up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/cipher.dot up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/digest.dot up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/kdf.dot up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/lifecycles.ods up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/mac.dot up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/pkey.dot up to 1.1.1.1
	crypto/external/bsd/openssl/dist/doc/life-cycles/rand.dot up to 1.1.1.1
	crypto/external/bsd/openssl/dist/engines/e_devcrypto.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/engines/e_loader_attic.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/engines/e_loader_attic.ec up to 1.1.1.1
	crypto/external/bsd/openssl/dist/engines/e_loader_attic.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/engines/e_loader_attic_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/engines/e_loader_attic_err.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/MODULES.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/lib/Text/Template/Preprocess.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/lib/Text/Template.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/author-pod-syntax.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/author-signature.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/basic.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/broken.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/delimiters.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/error.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/exported.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/hash.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/inline-comment.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/nested-tags.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/ofh.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/out.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/prepend.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/preprocess.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/rt29928.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/safe.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/safe2.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/safe3.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/strict.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/taint.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/template-encoding.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/warnings.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/Changes up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/INSTALL up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/LICENSE up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/MANIFEST up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/META.json up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/META.yml up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/Makefile.PL up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/README up to 1.1.1.1
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/SIGNATURE up to 1.1.1.1
	crypto/external/bsd/openssl/dist/fuzz/fuzz_rand.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/fuzz/cmp.c     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/sha3.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/asn1.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/core.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/endian.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/der.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/deprecated.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/namemap.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/ffc.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/ktls.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/packet.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/param_build_set.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/passphrase.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/property.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/propertyerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/provider.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/sizes.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/sm3.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/symhacks.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/tlsgroups.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/internal/unicode.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/asn1t.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/bio.h.in up to 1.2
	crypto/external/bsd/openssl/dist/include/openssl/crypto.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/cmp.h.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/lhash.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/macros.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/ct.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/err.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/safestack.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/opensslv.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/pkcs12.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/self_test.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/param_build.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/pkcs7.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/conf.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/x509v3.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/x509_vfy.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/ui.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/asn1.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/srp.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/ssl.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/cmp_util.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/cmperr.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/cms.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/configuration.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/conftypes.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/core.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/core_dispatch.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/core_names.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/core_object.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/crmf.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/crmferr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/cryptoerr_legacy.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/decoder.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/decodererr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/encoder.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/encodererr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/ess.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/esserr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/fips_names.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/fipskey.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/http.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/httperr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/ocsp.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/trace.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/opensslconf.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/params.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/prov_ssl.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/proverr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/provider.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/sslerr_legacy.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/types.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/openssl/x509.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/tserr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/aes_platform.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/asn1_dsa.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/asn1err.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/asyncerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/bioerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/bnerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/buffererr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/cmll_platform.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/cmperr.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/cmserr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/comperr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/conferr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/crmferr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/cryptoerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/cterr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/decoder.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/decodererr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/des_platform.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/dh.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/dherr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/dsa.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/dsaerr.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/ecerr.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/ecx.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/encoder.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/encodererr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/engineerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/ess.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/esserr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/evperr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/httperr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/modes.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/objectserr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/ocsperr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/pem.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/pemerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/pkcs12err.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/pkcs7.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/pkcs7err.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/ppc_arch.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/punycode.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/rand_pool.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/randerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/rsa.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/rsaerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/siv.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/security_bits.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/sparc_arch.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/sparse_array.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/storeerr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/types.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/uierr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/x509err.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/include/crypto/x509v3err.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/record/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/record/tls_pad.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/sslerr.h   up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/statem/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/tls_depr.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/ktls.c     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/ssl_err_legacy.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ssl/ssl_rsa_legacy.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/sm2.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/bad-othername-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/bad-othername-namec-inter.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/bad-othername-namec-key.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/bad-othername-namec.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ca-pol-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/root-ed25519.pubkey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/cert-key-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ct-server-key-public.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ct-server-key.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/dhk2048.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ec_privkey_with_chain.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-1024.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-3072.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-4096.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-8192.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-crit-unknown-ext.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-noncrit-unknown-ext.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-ocsp-nocheck.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-policies-bad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-cert-policies.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-key-1024.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-key-3072.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/fake-gp.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-key-4096.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-key-8192.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-pss-wrong1.5-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ee-ss-with-keyCertSign.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/embeddedSCTs1.tlssct up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/ext-check.csr up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/goodcn2-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/goodcn2-chain.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/goodcn2-key.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/grfc.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/key-pass-12345.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/leaf-chain.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/leaf-encrypted.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/nccaothername-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/nccaothername-key.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/pkitsta.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/root-ed25519.privkey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/server-dsa-pubkey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/sm2-ca-cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/sm2-csr.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/sm2-root.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/sm2-root.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/sm2.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/v3-certs-RC2.p12 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/certs/v3-certs-TDES.p12 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/README-dev.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/README-external.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/README.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/acvp_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/acvp_test.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/aesgcmtest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/algorithmid_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/bio_core_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ext_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ct/log_list.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/endecode_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/endecoder_legacy_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_extra_test2.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/fips.cnf  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/hexstr_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/http_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/insta.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/moduleloadtest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/sparse_array_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl_test_ctx_test.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testec-p112r1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testrsa2048.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testrsa2048pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testrsapss.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/threadstest.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/05-test_pbe.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/06-test_algorithmid.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/06-test_rdrand_sanity.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_traceapi.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_gost_engine.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_asn1.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/c2pnb163v1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/c2pnb208w1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/secp160k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/secp192k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/secp224k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/secp256k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/secp521r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect113r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect113r2-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect163k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect163r2-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect193r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect193r2-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect233k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect233r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect239k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect283k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect283r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect409k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect409r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect571k1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/sect571r1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls1-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls10-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls11-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls3-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls4-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls5-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls8-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/noncanon/wap-wsg-idm-ecid-wtls9-explicit.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_mp_rsa_data/rsamplcm.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_ccm_cavs.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_hkdf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac_blake.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppbe_pbkdf2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_dh.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_common.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_cts.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_ocb.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_siv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_stitched.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aes_wrap.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_aria.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_bf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_des.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_camellia.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_camellia_cts.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_cast5.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_chacha.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_des3_common.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_idea.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_rc2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_rc4.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_rc4_stitched.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_rc5.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_seed.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph_sm4.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_krb5.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_pbkdf1.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_pbkdf2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_scrypt.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_ss.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_ssh.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_tls11_prf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_tls12_prf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_tls13_kdf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_x942.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_x942_des.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf_x963.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac_cmac_des.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac_common.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac_poly1305.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac_siphash.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac_sm3.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_blake.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_md.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_mdc2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_ripemd.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_sha.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_sm3.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmd_whirlpool.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppbe_pkcs12.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppbe_scrypt.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_brainpool.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_dsa.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_ecdh.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_ecdsa.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_ecx.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_ffdhe.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_kas.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_kdf_hkdf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_kdf_scrypt.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_kdf_tls1_prf.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_mismatch.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_rsa.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_rsa_common.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_sm2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evprand.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_includes_data/incdir.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_sslapi_data/dhparams.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store_data/dsaparam.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store_data/rsa-key-2432.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store_data/testrsa.msb up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store_data/testrsa.pvk up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cms_data/ciphertext_from_1_1_1.cms up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cms_data/pkcs7-md4.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ca_data/revoked.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/02-test_internal_exts.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/00-prep_fipsmodule_cnf.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/01-test_fipsmodule_cnf.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/02-test_internal_context.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/02-test_internal_keymgmt.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/02-test_internal_provider.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/02-test_localetest.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/02-test_sparse_array.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_fipsinstall.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_asn1_dsa.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_bn.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_ffc.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_namemap.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_rsa_sp800_56b.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_sm3.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_conf.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_params_api.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/03-test_property.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_bio_core.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_encoder_decoder.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_encoder_decoder_legacy.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_hexstring.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_nodefltctx.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_param_build.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_params.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_params_conversion.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_provfetch.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_provider.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_provider_fallback.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_provider_pkey.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_punycode.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_upcalls.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_gendh.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_gendhparam.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_gendsa.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_rsaoaep.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_sha.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_app.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_cli_fips.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_kdf.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_legacy_okay.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_mac.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_pkeyutl.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_rand_config.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_spkac.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/fuzz.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_rusext.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_verify_store.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_acvp.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_aesgcm.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_defltfips.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_fetch_prov.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_kdf.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_libctx.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_dparam.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_prov_config.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_provider_status.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_readbuffer.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_asn.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_client.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_ctx.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_hdr.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_msg.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_server.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_status.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/66-test_ossl_store.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/71-test_ssl_ctx.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/79-test_http.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_policy_tree.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/81-test_cmp_cli.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_fipsload.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_asn1parse.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_bignum.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_bndiv.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_client.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_cmp.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_cms.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_conf.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_crl.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_ct.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_server.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz_x509.t up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_conf_data/dollarid_off.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_conf_data/dollarid_off.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_conf_data/dollarid_on.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_conf_data/dollarid_on.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_params_conversion_data/native_types.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/dhparams.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/dsaparams.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/dsaprivatekey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/dsapublickey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/rsaprivatekey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/rsapublickey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_read_depr_data/x942params.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/NOTES.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/beermug.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-1023line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-1024line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-1025line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-254-chars-at-the-end.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-254-chars-in-the-middle.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-255line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-256line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-257line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-blankline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-bom.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-comment.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-earlypad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-extrapad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-junk.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-infixwhitespace.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-leadingwhitespace.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-longline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-misalignedpad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-onecolumn.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-oneline-multiple-of-254.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-oneline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-shortandlongline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-shortline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-threecolumn.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert-trailingwhitespace.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/csr.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-1023line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-1024line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-1025line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-255line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-256line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-257line.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-blankline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-comment.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-corruptedheader.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-corruptiv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-earlypad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-extrapad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-infixwhitespace.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-junk.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-leadingwhitespace.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-longline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-misalignedpad.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-onecolumn.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-oneline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-onelineheader.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-shortandlongline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-shortline.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-threecolumn.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsa-trailingwhitespace.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/dsaparam.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/key.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/wellknown up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/invalid/p2048_q256_bad_q.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/invalid/p768_q160_too_small.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q160_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q160_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q160_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q160_t1864_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q224_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q224_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q256_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p1024_q256_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q160_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q160_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q224_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q224_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q224_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q224_t1864_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q256_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q256_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q256_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p2048_q256_t1864_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q160_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q160_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q224_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q224_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q256_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q256_t1862_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q256_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsaparam_data/valid/p3072_q256_t1864_gind1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_rsaoaep_data/plain_text up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/15-test_rsapss_data/negativesaltlen.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/invalid/dh_p1024_t1862_pkcs3.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/invalid/dh_p2048_t1862_pkcs3.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/invalid/dh_p2048_t1864_pkcs3.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/invalid/dh_p3072_t1862_pkcs3.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dh_5114_1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dh_5114_2.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dh_5114_3.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dh_ffdhe2048.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_5114_2.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_ffdhe2048.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p1024_q160_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p1024_q160_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p1024_q224_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p1024_q256_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p2048_q160_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p2048_q224_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p2048_q224_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p2048_q256_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p2048_q256_t1864.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p3072_q160_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p3072_q224_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_check_data/valid/dhx_p3072_q256_t1862.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/pkcs3-2-1024.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/pkcs3-2-1024.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/pkcs3-2-2048.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/pkcs3-2-2048.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/pkcs3-5-1024.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/pkcs3-5-1024.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/x942-0-1024.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dhparam_data/x942-0-1024.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data/ascii_chain.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data/ascii_leaf.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data/san.ascii up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data/san.utf8 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data/utf8_chain.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_eai_data/utf8_leaf.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_pkcs7_data/malformed.pkcs7 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_rusext_data/grfc.msb up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/25-test_rusext_data/grfc.utf8 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_defltfips/fipsmodule.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DH.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DH.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DH.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DH.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DH.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DH.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DSA.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DSA.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DSA.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DSA.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DSA.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/DSA.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/EC.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/EC.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/EC.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/EC.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/EC.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/EC.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED25519.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED25519.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED25519.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED25519.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED25519.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED25519.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED448.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED448.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED448.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED448.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED448.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/ED448.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/RSA.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/RSA.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/RSA.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/RSA.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/RSA.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/RSA.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X25519.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X25519.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X25519.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X25519.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X25519.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X25519.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X448.priv.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X448.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X448.priv.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X448.pub.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X448.pub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_pkey_provided/X448.pub.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix_data/args1.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix_data/args2.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix_data/in1.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix_data/in2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix_data/out1.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/61-test_bio_prefix_data/out2.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_client_data/client.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_client_data/client.csr up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_client_data/client.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_client_data/server.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_client_data/server.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_msg_data/new.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_msg_data/pkcs10.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_msg_data/server.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/EndEntity1.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/EndEntity2.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/IP_PBM.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/IP_PBM.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/IR_protected.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/IR_unprotected.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/Intermediate_CA.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/Root_CA.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/server.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_protect_data/server.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_server_data/CR_protected_PBM_1234.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/EndEntity1.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/EndEntity2.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IP_waitingStatus_PBM.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IP_waitingStatus_PBM.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IR_protected.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IR_protected_0_extraCerts.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IR_protected_2_extraCerts.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IR_rmprotection.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/IR_unprotected.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/Intermediate_CA.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/Root_CA.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/chain.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/client.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/insta.cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/insta.priv.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/insta_ca.cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/server.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_vfy_data/server.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/66-test_ossl_store_data/DH-params.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/66-test_ossl_store_data/DHX-params.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/66-test_ossl_store_data/DSA-params.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/12345.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/big_issuing.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/big_root.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/big_server.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/big_trusted.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/csr.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/empty.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/issuing.crt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/issuing_expired.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/new.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/new_pass_12345.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/new_pub.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/random.bin up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/root.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/root_expired.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/server.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/server.crt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/server.key up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/signer.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/signer.key up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/signer.p12 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/signer_issuing.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/signer_only.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/signer_root.crt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/test.cnf up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/trusted.crt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/wrong_csr.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/test_commands.csv up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/test_connection.csv up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/test_credentials.csv up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/test_enrollment.csv up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/test_verification.csv up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmsapi_data/encryptedData.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_policy_tree_data/large_leaf.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_policy_tree_data/large_policy_tree.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_policy_tree_data/small_leaf.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_policy_tree_data/small_policy_tree.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ssl_old_data/dsa2048.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/all-zero.tsq up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/comodo-aaa.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/sectigo-all-zero.tsr up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/sectigo-signer.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/sectigo-time-stamping-ca.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/user-trust-ca-aaa.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa_data/user-trust-ca.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/90-test_threads_data/rsakey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/dhpkey.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/dsapub.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/dsapub_noparam.der up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/ec_p256_bad_0.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/ec_p256_bad_1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/sm2_bad_0.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/sm2_bad_1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/91-test_pkey_check_data/sm2_bad_neg1.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_gost_engine_data/gost_engine.sh up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/03-custom_verify.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/03-custom_verify.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/04-client_auth.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/05-sni.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/05-sni.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/06-sni-ticket.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/06-sni-ticket.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/07-dtls-protocol-version.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/07-dtls-protocol-version.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/08-npn.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/08-npn.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/09-alpn.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/10-resumption.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/02-protocol-version.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/11-dtls_resumption.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/10-resumption.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/11-dtls_resumption.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/12-ct.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/12-ct.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/13-fragmentation.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/13-fragmentation.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/14-curves.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/14-curves.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/15-certstatus.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/15-certstatus.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/16-dtls-certstatus.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/16-dtls-certstatus.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/17-renegotiate.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/18-dtls-renegotiate.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/09-alpn.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/19-mac-then-encrypt.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/19-mac-then-encrypt.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/17-renegotiate.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/18-dtls-renegotiate.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/20-cert-select.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/20-cert-select.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/21-key-update.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/21-key-update.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/22-compression.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/22-compression.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/23-srp.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/23-srp.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/24-padding.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/24-padding.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/25-cipher.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/25-cipher.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/26-tls13_client_auth.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/26-tls13_client_auth.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/27-ticket-appdata.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/27-ticket-appdata.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/28-seclevel.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/28-seclevel.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/29-dtls-sctp-label-bug.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/29-dtls-sctp-label-bug.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/30-extended-master-secret.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/30-extended-master-secret.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/01-simple.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/01-simple.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/04-client_auth.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ssl-tests/02-protocol-version.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testutil/provider.c up to 1.3
	crypto/external/bsd/openssl/dist/test/testutil/apps_shims.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testutil/fake_random.c up to 1.2
	crypto/external/bsd/openssl/dist/test/testutil/load.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testutil/options.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testutil/output.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testutil/test_options.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/asn1_dsa_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/bio_prefix_text.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/bio_readbuffer_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/bn_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/bn_rand_range.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ca-and-certs.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/cmp_asn_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/cmp_client_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/cmp_ctx_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/cmp_hdr_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/cmp_msg_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/cmp_protect_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/cmp_server_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/cmp_status_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/cmp_vfy_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/confdump.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/context_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/data2.bin up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/default-and-fips.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/default-and-legacy.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/default.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/defltfips_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_fetch_prov_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_kdf_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_libctx_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_pkey_ctx_new_from_name.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_pkey_dparams_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/evp_pkey_provided_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/fake_rsaprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/fake_rsaprov.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ffc_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/filterprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/filterprov.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/fips-alt.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/fips-and-base.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/fips_version_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/insta_ca.cert.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/keymgmt_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/legacy.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/localetest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/namemap_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/nodefltctxtest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/null.cnf  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/ossl_store_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/p_test.c  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/param_build_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/params_api_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/params_conversion_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/params_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/pbetest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/pem_read_depr_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/pkcs12_format_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/pkcs7_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/property_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/prov_config_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provfetchtest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provider_fallback_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provider_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provider_internal_test.cnf.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provider_pkey_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provider_status_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/provider_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/proxy.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/punycode_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/rand_status_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/rand_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/rsa_sp800_56b_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/sha_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/simpledynamic.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/simpledynamic.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/sm3_internal_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/smcont.bin up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/smcont_zero.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/cmp_testlib.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/cmp_testlib.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/handshake.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/handshake.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/handshake_srp.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/pkcs12.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/pkcs12.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/predefined_dhparams.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/predefined_dhparams.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/ssl_test_ctx.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/ssl_test_ctx.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/helpers/ssltestlib.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/helpers/ssltestlib.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/ssl_old_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/testrsapssmandatory.pem up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/threadstest_fips.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/tls-provider.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/trace_api_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/upcallstest.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/user_property_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/v3_ca_exts.cnf up to 1.1.1.1
	crypto/external/bsd/openssl/dist/test/smime-eml/SignedInvalidMappingFromanyPolicyTest7.eml up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/other-internal.syms up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/providers.num up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/withlibctx.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Config/Query.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/OID.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Ordinals.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/ParseC.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Template.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Util.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/config.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/fallback.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/stackhash.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/other.syms up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/c-compress-test.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/check-format-test-negatives.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/check-format-test-positives.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/check-format.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/engines.num up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/err-to-raise up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/fips-checksums.sh up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/fix-deprecation up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/lang-compress.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/markdownlint.rb up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/merge-err-lines up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingcrypto-internal.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingcrypto.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingcrypto111.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingmacro.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingmacro111.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingssl-internal.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingssl.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/missingssl111.txt up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/mk-fipsmodule-cnf.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/mknum.pl  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/mkpod2html.pl up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/wrap.pl.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/util/write-man-symlinks up to 1.1.1.1
	crypto/external/bsd/openssl/dist/ACKNOWLEDGEMENTS.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/CHANGES.md     up to 1.1.1.2
	crypto/external/bsd/openssl/dist/HACKING.md     up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NOTES-ANDROID.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NOTES-DJGPP.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NOTES-NONSTOP.md up to 1.1.1.2
	crypto/external/bsd/openssl/dist/NOTES-PERL.md  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NOTES-UNIX.md  up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NOTES-VALGRIND.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/NOTES-VMS.md   up to 1.1.1.2
	crypto/external/bsd/openssl/dist/NOTES-WINDOWS.md up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/DIGESTS.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/DSA.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/EC.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/ECX.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/NIST.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/RSA.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/SM2.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_digests_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_dsa_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_dsa_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_dsa_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_ec_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_ec_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_ec_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_ecx_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_ecx_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_rsa_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_rsa_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_rsa_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_sm2_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_sm2_key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_sm2_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/der_wrap_gen.c.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/oids_to_c.pm up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/der/wrap.asn1 up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/bio_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/capabilities.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/digest_to_nid.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/provider_ctx.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/provider_err.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/provider_seeding.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/provider_util.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/securitycheck.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/securitycheck_default.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/securitycheck_fips.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/__DECC_INCLUDE_EPILOGUE.H up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/__DECC_INCLUDE_PROLOGUE.H up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/bio.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_digests.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_dsa.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_ec.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_ecx.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_rsa.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_sm2.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/der_wrap.h.in up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/proverr.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/provider_ctx.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/provider_util.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/providercommon.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/common/include/prov/securitycheck.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/baseprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/decoders.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/defltprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/encoders.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips-sources.checksums up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/fips.checksum up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/fips.module.sources up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/legacyprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/nullprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/prov_running.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/stores.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/fips_entry.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/fipsprov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/self_test.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/self_test.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/self_test_data.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/fips/self_test_kats.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/asymciphers/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/asymciphers/rsa_enc.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/asymciphers/sm2_enc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ccm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ccm.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ccm_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ccm_hw_aesni.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ccm_hw_s390x.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ccm_hw_t4.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_cts.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm_hw_aesni.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm_hw_armv8.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm_hw_s390x.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_gcm_hw_t4.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_hw_aesni.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_hw_s390x.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_hw_t4.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ocb.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ocb.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_ocb_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_siv.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_siv.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_siv_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_wrp.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_xts.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_xts.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_xts_fips.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aes_xts_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_ccm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_ccm.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_ccm_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_gcm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_gcm.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_gcm_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_aria_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_blowfish.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_blowfish.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_blowfish_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_cast.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_camellia.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_camellia.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_camellia_cts.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_camellia_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_camellia_hw_t4.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_cast5.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_cast5_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_chacha20.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_chacha20.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_chacha20_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_chacha20_poly1305.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_chacha20_poly1305.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_cts.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_cts.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_des.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_des.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_des_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_desx.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_desx_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_idea.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_idea.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_idea_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_null.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc2.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc2_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc4.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc4.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc4_hmac_md5.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc4_hmac_md5.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc4_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc5.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc5.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_rc5_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_seed.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_seed.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_seed_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_sm4.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_sm4.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_sm4_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_common.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_default.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_default.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_default_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_wrap.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/cipher_tdes_wrap_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_block.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_ccm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_ccm_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_gcm.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_gcm_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_hw.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ciphercommon_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/blake2_impl.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/blake2_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/blake2b_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/blake2s_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/digestcommon.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/md2_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/md4_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/md5_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/md5_sha1_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/mdc2_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/null_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/ripemd_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/sha2_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/sha3_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/sm3_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/digests/wp_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/decode_der2key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/decode_epki2pki.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/decode_msblob2key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/decode_pem2der.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/decode_pvk2key.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/decode_spki2typespki.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/encode_key2any.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/encode_key2blob.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/encode_key2ms.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/encode_key2text.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/endecoder_common.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/endecoder_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/exchange/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/exchange/dh_exch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/exchange/ecdh_exch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/exchange/ecx_exch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/exchange/kdf_exch.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/__DECC_INCLUDE_EPILOGUE.H up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/__DECC_INCLUDE_PROLOGUE.H up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/blake2.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ciphercommon.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ciphercommon_aead.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ciphercommon_ccm.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ciphercommon_gcm.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/digestcommon.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/implementations.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/kdfexchange.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/macsignature.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/md5_sha1.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/names.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/include/prov/seeding.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/hkdf.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/kbkdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/krb5kdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/pbkdf1.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/pbkdf2.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/pbkdf2.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/pbkdf2_fips.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/pkcs12kdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/scrypt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/sshkdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/sskdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/tls1_prf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kdfs/x942kdf.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kem/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/kem/rsa_kem.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/dh_kmgmt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/dsa_kmgmt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/ec_kmgmt.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/ec_kmgmt_imexport.inc up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/ecx_kmgmt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/kdf_legacy_kmgmt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/mac_legacy_kmgmt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/rsa_kmgmt.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/macs/blake2_mac_impl.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/blake2b_mac.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/blake2s_mac.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/cmac_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/gmac_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/hmac_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/kmac_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/poly1305_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/macs/siphash_prov.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/rand_cpu_x86.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/rand_tsc.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/rand_unix.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/rand_vms.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/rand_vxworks.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/rand_win.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/crngt.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/drbg.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/rands/drbg_ctr.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/drbg_hash.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/drbg_hmac.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/drbg_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/seed_src.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/rands/test_rng.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/signature/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/signature/dsa_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/signature/ecdsa_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/signature/eddsa_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/signature/mac_legacy_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/signature/rsa_sig.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/providers/implementations/signature/sm2_sig.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/build.info up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/file_store.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/file_store_any2obj.c up to 1.1.1.1
	crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/file_store_local.h up to 1.1.1.1
	crypto/external/bsd/openssl/include/openssl/opensslv.h up to 1.2
	crypto/external/bsd/openssl/include/openssl/configuration.h up to 1.4
	crypto/external/bsd/openssl/include/openssl/fipskey.h up to 1.1
	crypto/external/bsd/openssl/lib/engines/capi/Makefile delete
	crypto/external/bsd/openssl/lib/libcrypto/ecdh.inc delete
	crypto/external/bsd/openssl/lib/libcrypto/ecdsa.inc delete
	crypto/external/bsd/openssl/lib/libcrypto/krb5.inc delete
	crypto/external/bsd/openssl/lib/libcrypto/md2.inc delete
	crypto/external/bsd/openssl/lib/libcrypto/rc5.inc delete
	crypto/external/bsd/openssl/lib/libcrypto/x509v3.inc delete
	crypto/external/bsd/openssl/dist/ACKNOWLEDGEMENTS delete
	crypto/external/bsd/openssl/dist/AUTHORS        delete
	crypto/external/bsd/openssl/dist/CHANGES        delete
	crypto/external/bsd/openssl/dist/CONTRIBUTING   delete
	crypto/external/bsd/openssl/dist/FAQ            delete
	crypto/external/bsd/openssl/dist/INSTALL        delete
	crypto/external/bsd/openssl/dist/LICENSE        delete
	crypto/external/bsd/openssl/dist/NEWS           delete
	crypto/external/bsd/openssl/dist/NOTES.ANDROID  delete
	crypto/external/bsd/openssl/dist/NOTES.DJGPP    delete
	crypto/external/bsd/openssl/dist/NOTES.PERL     delete
	crypto/external/bsd/openssl/dist/NOTES.UNIX     delete
	crypto/external/bsd/openssl/dist/NOTES.VMS      delete
	crypto/external/bsd/openssl/dist/NOTES.WIN      delete
	crypto/external/bsd/openssl/dist/README         delete
	crypto/external/bsd/openssl/dist/README.ENGINE  delete
	crypto/external/bsd/openssl/dist/README.FIPS    delete
	crypto/external/bsd/openssl/dist/Configurations/README delete
	crypto/external/bsd/openssl/dist/Configurations/README.design delete
	crypto/external/bsd/openssl/dist/Configurations/common.tmpl delete
	crypto/external/bsd/openssl/dist/apps/app_rand.c delete
	crypto/external/bsd/openssl/dist/apps/apps.c    delete
	crypto/external/bsd/openssl/dist/apps/apps.h    delete
	crypto/external/bsd/openssl/dist/apps/asn1pars.c delete
	crypto/external/bsd/openssl/dist/apps/bf_prefix.c delete
	crypto/external/bsd/openssl/dist/apps/crl2p7.c  delete
	crypto/external/bsd/openssl/dist/apps/dh1024.pem delete
	crypto/external/bsd/openssl/dist/apps/dh2048.pem delete
	crypto/external/bsd/openssl/dist/apps/dh4096.pem delete
	crypto/external/bsd/openssl/dist/apps/opt.c     delete
	crypto/external/bsd/openssl/dist/apps/s_apps.h  delete
	crypto/external/bsd/openssl/dist/apps/s_cb.c    delete
	crypto/external/bsd/openssl/dist/apps/s_socket.c delete
	crypto/external/bsd/openssl/dist/apps/vms_decc_argv.c delete
	crypto/external/bsd/openssl/dist/apps/vms_term_sock.c delete
	crypto/external/bsd/openssl/dist/apps/vms_term_sock.h delete
	crypto/external/bsd/openssl/dist/apps/win32_init.c delete
	crypto/external/bsd/openssl/dist/crypto/mem_dbg.c delete
	crypto/external/bsd/openssl/dist/crypto/o_fips.c delete
	crypto/external/bsd/openssl/dist/crypto/ppc_arch.h delete
	crypto/external/bsd/openssl/dist/crypto/sparc_arch.h delete
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_par.c delete
	crypto/external/bsd/openssl/dist/crypto/asn1/i2d_pr.c delete
	crypto/external/bsd/openssl/dist/crypto/asn1/i2d_pu.c delete
	crypto/external/bsd/openssl/dist/crypto/bio/b_addr.c delete
	crypto/external/bsd/openssl/dist/crypto/bio/b_dump.c delete
	crypto/external/bsd/openssl/dist/crypto/bio/b_print.c delete
	crypto/external/bsd/openssl/dist/crypto/bio/b_sock.c delete
	crypto/external/bsd/openssl/dist/crypto/bio/b_sock2.c delete
	crypto/external/bsd/openssl/dist/crypto/blake2/blake2_impl.h delete
	crypto/external/bsd/openssl/dist/crypto/blake2/blake2_local.h delete
	crypto/external/bsd/openssl/dist/crypto/blake2/blake2b.c delete
	crypto/external/bsd/openssl/dist/crypto/blake2/blake2s.c delete
	crypto/external/bsd/openssl/dist/crypto/blake2/build.info delete
	crypto/external/bsd/openssl/dist/crypto/blake2/m_blake2b.c delete
	crypto/external/bsd/openssl/dist/crypto/blake2/m_blake2s.c delete
	crypto/external/bsd/openssl/dist/crypto/bn/rsa_sup_mul.c delete
	crypto/external/bsd/openssl/dist/crypto/cmac/cm_ameth.c delete
	crypto/external/bsd/openssl/dist/crypto/cmac/cm_pmeth.c delete
	crypto/external/bsd/openssl/dist/crypto/dh/dh1024.pem delete
	crypto/external/bsd/openssl/dist/crypto/dh/dh192.pem delete
	crypto/external/bsd/openssl/dist/crypto/dh/dh2048.pem delete
	crypto/external/bsd/openssl/dist/crypto/dh/dh4096.pem delete
	crypto/external/bsd/openssl/dist/crypto/dh/dh512.pem delete
	crypto/external/bsd/openssl/dist/crypto/dh/dh_rfc7919.c delete
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_32/f_impl.c delete
	crypto/external/bsd/openssl/dist/crypto/engine/README delete
	crypto/external/bsd/openssl/dist/crypto/engine/eng_devcrypto.c delete
	crypto/external/bsd/openssl/dist/crypto/err/README delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_md2.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_md4.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_md5.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_md5_sha1.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_mdc2.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_ripemd.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_sha1.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_sha3.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/m_wp.c delete
	crypto/external/bsd/openssl/dist/crypto/evp/pmeth_fn.c delete
	crypto/external/bsd/openssl/dist/crypto/hmac/hm_ameth.c delete
	crypto/external/bsd/openssl/dist/crypto/hmac/hm_pmeth.c delete
	crypto/external/bsd/openssl/dist/crypto/kdf/hkdf.c delete
	crypto/external/bsd/openssl/dist/crypto/kdf/scrypt.c delete
	crypto/external/bsd/openssl/dist/crypto/kdf/tls1_prf.c delete
	crypto/external/bsd/openssl/dist/crypto/modes/modes_local.h delete
	crypto/external/bsd/openssl/dist/crypto/objects/README delete
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_ht.c delete
	crypto/external/bsd/openssl/dist/crypto/perlasm/README delete
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305_ameth.c delete
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305_local.h delete
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305_pmeth.c delete
	crypto/external/bsd/openssl/dist/crypto/rand/drbg_ctr.c delete
	crypto/external/bsd/openssl/dist/crypto/rand/drbg_lib.c delete
	crypto/external/bsd/openssl/dist/crypto/rand/rand_unix.c delete
	crypto/external/bsd/openssl/dist/crypto/rand/rand_vms.c delete
	crypto/external/bsd/openssl/dist/crypto/rand/rand_win.c delete
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_ssl.c delete
	crypto/external/bsd/openssl/dist/crypto/siphash/siphash_ameth.c delete
	crypto/external/bsd/openssl/dist/crypto/siphash/siphash_local.h delete
	crypto/external/bsd/openssl/dist/crypto/siphash/siphash_pmeth.c delete
	crypto/external/bsd/openssl/dist/crypto/sm2/sm2_pmeth.c delete
	crypto/external/bsd/openssl/dist/crypto/sm3/m_sm3.c delete
	crypto/external/bsd/openssl/dist/crypto/store/loader_file.c delete
	crypto/external/bsd/openssl/dist/crypto/x509/x509_trs.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/build.info delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/ext_dat.h delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_cache.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_data.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_lib.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_local.h delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_map.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_node.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/pcy_tree.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/standard_exts.h delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_addr.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_admis.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_admis.h delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_akey.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_akeya.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_alt.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_asid.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_bcons.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_bitst.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_conf.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_cpols.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_crld.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_enum.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_extku.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_genn.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_ia5.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_info.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_int.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_lib.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_ncons.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_pci.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_pcia.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_pcons.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_pku.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_pmaps.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_prn.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_purp.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_skey.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_sxnet.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_tlsf.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3_utl.c delete
	crypto/external/bsd/openssl/dist/crypto/x509v3/v3err.c delete
	crypto/external/bsd/openssl/dist/demos/README   delete
	crypto/external/bsd/openssl/dist/demos/bio/README delete
	crypto/external/bsd/openssl/dist/demos/certs/README delete
	crypto/external/bsd/openssl/dist/demos/engines/e_chil.txt delete
	crypto/external/bsd/openssl/dist/demos/evp/Makefile delete
	crypto/external/bsd/openssl/dist/demos/evp/aesccm.c delete
	crypto/external/bsd/openssl/dist/demos/evp/aesgcm.c delete
	crypto/external/bsd/openssl/dist/doc/README     delete
	crypto/external/bsd/openssl/dist/doc/man1/asn1parse.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/ca.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/ciphers.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/cms.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/crl.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/crl2pkcs7.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/dgst.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/dhparam.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/dsa.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/dsaparam.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/ec.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/ecparam.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/enc.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/engine.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/errstr.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/gendsa.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/genpkey.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/genrsa.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/list.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/nseq.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/ocsp.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/passwd.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/pkcs12.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/pkcs7.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/pkcs8.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/pkey.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/pkeyparam.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/pkeyutl.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/prime.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/rand.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/rehash.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/req.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/rsa.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/rsautl.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/s_client.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/s_server.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/s_time.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/sess_id.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/smime.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/speed.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/spkac.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/srp.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/storeutl.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/ts.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/verify.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/version.pod delete
	crypto/external/bsd/openssl/dist/doc/man1/x509.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_cmp.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/EVP_aes.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_size.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/EVP_aria.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/EVP_camellia.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/EVP_des.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_VERSION_NUMBER.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/RAND_DRBG_generate.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/RAND_DRBG_get0_master.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/RAND_DRBG_new.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/RAND_DRBG_reseed.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/RAND_DRBG_set_callbacks.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/RAND_DRBG_set_ex_data.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_ex_data.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get_ex_data.pod delete
	crypto/external/bsd/openssl/dist/doc/man3/d2i_DHparams.pod delete
	crypto/external/bsd/openssl/dist/doc/man7/Ed25519.pod delete
	crypto/external/bsd/openssl/dist/doc/man7/RAND_DRBG.pod delete
	crypto/external/bsd/openssl/dist/doc/man7/SM2.pod delete
	crypto/external/bsd/openssl/dist/doc/man7/scrypt.pod delete
	crypto/external/bsd/openssl/dist/external/perl/transfer/Text/Template.pm delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/lib/Text/Template/Preprocess.pm delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/lib/Text/Template.pm delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/00-version.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/01-basic.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/02-hash.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/03-out.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/04-safe.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/05-safe2.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/06-ofh.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/07-safe3.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/08-exported.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/09-error.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/10-delimiters.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/11-prepend.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/12-preprocess.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/13-taint.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/t/14-broken.t delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/Artistic delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/COPYING delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/INSTALL delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/MANIFEST delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/META.json delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/META.yml delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/Makefile.PL delete
	crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.46/README delete
	crypto/external/bsd/openssl/dist/fuzz/rand.inc  delete
	crypto/external/bsd/openssl/dist/include/crypto/sm3.h delete
	crypto/external/bsd/openssl/dist/include/internal/o_str.h delete
	crypto/external/bsd/openssl/dist/include/openssl/asn1.h delete
	crypto/external/bsd/openssl/dist/include/openssl/asn1t.h delete
	crypto/external/bsd/openssl/dist/include/openssl/bio.h delete
	crypto/external/bsd/openssl/dist/include/openssl/cms.h delete
	crypto/external/bsd/openssl/dist/include/openssl/conf.h delete
	crypto/external/bsd/openssl/dist/include/openssl/crypto.h delete
	crypto/external/bsd/openssl/dist/include/openssl/ct.h delete
	crypto/external/bsd/openssl/dist/include/openssl/err.h delete
	crypto/external/bsd/openssl/dist/include/openssl/lhash.h delete
	crypto/external/bsd/openssl/dist/include/openssl/ocsp.h delete
	crypto/external/bsd/openssl/dist/include/openssl/opensslconf.h.in delete
	crypto/external/bsd/openssl/dist/include/openssl/opensslv.h delete
	crypto/external/bsd/openssl/dist/include/openssl/pkcs12.h delete
	crypto/external/bsd/openssl/dist/include/openssl/pkcs7.h delete
	crypto/external/bsd/openssl/dist/include/openssl/rand_drbg.h delete
	crypto/external/bsd/openssl/dist/include/openssl/safestack.h delete
	crypto/external/bsd/openssl/dist/include/openssl/srp.h delete
	crypto/external/bsd/openssl/dist/include/openssl/ssl.h delete
	crypto/external/bsd/openssl/dist/include/openssl/ui.h delete
	crypto/external/bsd/openssl/dist/include/openssl/x509.h delete
	crypto/external/bsd/openssl/dist/include/openssl/x509_vfy.h delete
	crypto/external/bsd/openssl/dist/include/openssl/x509v3.h delete
	crypto/external/bsd/openssl/dist/ssl/record/README delete
	crypto/external/bsd/openssl/dist/ssl/packet.c   delete
	crypto/external/bsd/openssl/dist/ssl/packet_local.h delete
	crypto/external/bsd/openssl/dist/ssl/statem/README delete
	crypto/external/bsd/openssl/dist/test/CAss.cnf  delete
	crypto/external/bsd/openssl/dist/test/CAssdh.cnf delete
	crypto/external/bsd/openssl/dist/test/CAssdsa.cnf delete
	crypto/external/bsd/openssl/dist/test/CAssrsa.cnf delete
	crypto/external/bsd/openssl/dist/test/P1ss.cnf  delete
	crypto/external/bsd/openssl/dist/test/P2ss.cnf  delete
	crypto/external/bsd/openssl/dist/test/README    delete
	crypto/external/bsd/openssl/dist/test/README.external delete
	crypto/external/bsd/openssl/dist/test/Sssdsa.cnf delete
	crypto/external/bsd/openssl/dist/test/Sssrsa.cnf delete
	crypto/external/bsd/openssl/dist/test/Uss.cnf   delete
	crypto/external/bsd/openssl/dist/test/drbg_cavs_data.c delete
	crypto/external/bsd/openssl/dist/test/drbg_cavs_data.h delete
	crypto/external/bsd/openssl/dist/test/drbg_cavs_test.c delete
	crypto/external/bsd/openssl/dist/test/drbgtest.h delete
	crypto/external/bsd/openssl/dist/test/evp_test.h delete
	crypto/external/bsd/openssl/dist/test/gosttest.c delete
	crypto/external/bsd/openssl/dist/test/handshake_helper.c delete
	crypto/external/bsd/openssl/dist/test/handshake_helper.h delete
	crypto/external/bsd/openssl/dist/test/md2test.c delete
	crypto/external/bsd/openssl/dist/test/ct/log_list.conf delete
	crypto/external/bsd/openssl/dist/test/ssl_test_ctx.c delete
	crypto/external/bsd/openssl/dist/test/ssl_test_ctx.h delete
	crypto/external/bsd/openssl/dist/test/ssl_test_ctx_test.conf delete
	crypto/external/bsd/openssl/dist/test/ssltest_old.c delete
	crypto/external/bsd/openssl/dist/test/ssltestlib.c delete
	crypto/external/bsd/openssl/dist/test/ssltestlib.h delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/include/openssl/base.h delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/async_bio.cc delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/async_bio.h delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/build.info delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/ossl_config.json delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/ossl_shim.cc delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/packeted_bio.cc delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/packeted_bio.h delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/test_config.cc delete
	crypto/external/bsd/openssl/dist/test/ossl_shim/test_config.h delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem.t delete
	crypto/external/bsd/openssl/dist/test/recipes/05-test_md2.t delete
	crypto/external/bsd/openssl/dist/test/recipes/05-test_mdc2.t delete
	crypto/external/bsd/openssl/dist/test/recipes/06-test-rdrand.t delete
	crypto/external/bsd/openssl/dist/test/recipes/90-test_gost.t delete
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_boringssl.t delete
	crypto/external/bsd/openssl/dist/test/recipes/99-test_fuzz.t delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/beermug.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/NOTES delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-1023line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-1024line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-1025line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-254-chars-at-the-end.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-254-chars-in-the-middle.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-255line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-256line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-257line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-blankline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-comment.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-earlypad.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-extrapad.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-infixwhitespace.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/csr.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-junk.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-leadingwhitespace.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-longline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-misalignedpad.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-onecolumn.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-oneline-multiple-of-254.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-oneline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-shortandlongline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-shortline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-threecolumn.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert-trailingwhitespace.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/cert.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-1023line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-1024line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-1025line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-255line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-256line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-257line.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-blankline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-comment.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-corruptedheader.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-corruptiv.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-earlypad.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-extrapad.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-infixwhitespace.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-junk.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-leadingwhitespace.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-longline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-misalignedpad.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-onecolumn.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-oneline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-onelineheader.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-shortandlongline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-shortline.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-threecolumn.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsa-trailingwhitespace.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/dsaparam.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/key.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_data/wellknown delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/c2pnb163v1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/c2pnb208w1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/secp160k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/secp192k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/secp224k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/secp256k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/secp521r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect113r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect113r2-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect163k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect163r2-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect193r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect193r2-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect233k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect233r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect239k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect283k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect283r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect409k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect409r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect571k1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/sect571r1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls1-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls10-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls11-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls3-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls4-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls5-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls8-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam_data/valid/wap-wsg-idm-ecid-wtls9-explicit.pem delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpcase.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpccmcavs.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpciph.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpdigest.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpkdf.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpmac.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppbe.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey.txt delete
	crypto/external/bsd/openssl/dist/test/recipes/90-test_gost_data/gost.conf delete
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store_data/user.cnf delete
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store_data/ca.cnf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/01-simple.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/01-simple.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/02-protocol-version.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/02-protocol-version.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/03-custom_verify.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/03-custom_verify.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/04-client_auth.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/04-client_auth.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/05-sni.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/05-sni.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/06-sni-ticket.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/06-sni-ticket.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/07-dtls-protocol-version.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/07-dtls-protocol-version.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/08-npn.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/08-npn.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/09-alpn.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/09-alpn.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/10-resumption.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/10-resumption.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/11-dtls_resumption.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/11-dtls_resumption.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/12-ct.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/12-ct.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/13-fragmentation.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/13-fragmentation.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/14-curves.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/14-curves.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/15-certstatus.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/15-certstatus.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/16-dtls-certstatus.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/16-dtls-certstatus.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/17-renegotiate.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/17-renegotiate.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/18-dtls-renegotiate.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/18-dtls-renegotiate.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/19-mac-then-encrypt.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/19-mac-then-encrypt.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/20-cert-select.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/20-cert-select.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/21-key-update.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/21-key-update.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/22-compression.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/22-compression.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/23-srp.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/23-srp.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/24-padding.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/24-padding.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/25-cipher.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/25-cipher.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/26-tls13_client_auth.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/26-tls13_client_auth.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/27-ticket-appdata.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/27-ticket-appdata.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/28-seclevel.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/28-seclevel.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/29-dtls-sctp-label-bug.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/29-dtls-sctp-label-bug.conf.in delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/30-supported-groups.conf delete
	crypto/external/bsd/openssl/dist/test/ssl-tests/30-supported-groups.conf.in delete
	crypto/external/bsd/openssl/dist/test/testutil/output_helpers.c delete
	crypto/external/bsd/openssl/dist/test/testutil/tap_bio.c delete
	crypto/external/bsd/openssl/dist/util/openssl-format-source delete
	crypto/external/bsd/openssl/dist/util/openssl-update-copyright delete
	crypto/external/bsd/openssl/dist/util/private.num delete
	crypto/external/bsd/openssl/dist/util/process_docs.pl delete
	crypto/external/bsd/openssl/dist/util/perl/with_fallback.pm delete
	crypto/external/bsd/openssl/include/internal/bn_conf.h delete
	crypto/external/bsd/openssl/include/internal/dso_conf.h delete
	crypto/external/bsd/openssl/include/openssl/opensslconf.h delete
	crypto/external/bsd/openssl/bin/Makefile        up to 1.12
	crypto/external/bsd/openssl/dist/Configure      up to 1.33
	crypto/external/bsd/openssl/dist/appveyor.yml   up to 1.1.1.7
	crypto/external/bsd/openssl/dist/build.info     up to 1.1.1.4
	crypto/external/bsd/openssl/dist/config         up to 1.1.1.15
	crypto/external/bsd/openssl/dist/config.com     up to 1.1.1.3
	crypto/external/bsd/openssl/dist/e_os.h         up to 1.18
	crypto/external/bsd/openssl/dist/Configurations/00-base-templates.conf up to 1.1.1.6
	crypto/external/bsd/openssl/dist/Configurations/10-main.conf up to 1.1.1.14
	crypto/external/bsd/openssl/dist/Configurations/15-android.conf up to 1.1.1.6
	crypto/external/bsd/openssl/dist/Configurations/15-ios.conf up to 1.1.1.4
	crypto/external/bsd/openssl/dist/Configurations/50-djgpp.conf up to 1.1.1.3
	crypto/external/bsd/openssl/dist/Configurations/50-haiku.conf up to 1.1.1.3
	crypto/external/bsd/openssl/dist/Configurations/50-masm.conf up to 1.1.1.3
	crypto/external/bsd/openssl/dist/Configurations/50-win-onecore.conf up to 1.1.1.5
	crypto/external/bsd/openssl/dist/Configurations/descrip.mms.tmpl up to 1.1.1.10
	crypto/external/bsd/openssl/dist/Configurations/shared-info.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/Configurations/unix-Makefile.tmpl up to 1.1.1.14
	crypto/external/bsd/openssl/dist/Configurations/unix-checker.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/Configurations/windows-checker.pm up to 1.1.1.3
	crypto/external/bsd/openssl/dist/Configurations/windows-makefile.tmpl up to 1.1.1.10
	crypto/external/bsd/openssl/dist/VMS/VMSify-conf.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/VMS/openssl_ivp.com.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/VMS/openssl_shutdown.com.in up to 1.1.1.3
	crypto/external/bsd/openssl/dist/VMS/openssl_startup.com.in up to 1.1.1.3
	crypto/external/bsd/openssl/dist/VMS/openssl_utils.com.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/VMS/translatesyms.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/apps/CA.pl.in  up to 1.1.1.6
	crypto/external/bsd/openssl/dist/apps/build.info up to 1.1.1.4
	crypto/external/bsd/openssl/dist/apps/ca.c      up to 1.23
	crypto/external/bsd/openssl/dist/apps/ciphers.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/apps/cms.c     up to 1.1.1.16
	crypto/external/bsd/openssl/dist/apps/crl.c     up to 1.1.1.7
	crypto/external/bsd/openssl/dist/apps/dgst.c    up to 1.1.1.18
	crypto/external/bsd/openssl/dist/apps/dhparam.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/apps/dsa.c     up to 1.1.1.10
	crypto/external/bsd/openssl/dist/apps/dsaparam.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/apps/ec.c      up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/ecparam.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/apps/enc.c     up to 1.1.1.19
	crypto/external/bsd/openssl/dist/apps/engine.c  up to 1.1.1.9
	crypto/external/bsd/openssl/dist/apps/errstr.c  up to 1.1.1.6
	crypto/external/bsd/openssl/dist/apps/gendsa.c  up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/genpkey.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/apps/genrsa.c  up to 1.1.1.11
	crypto/external/bsd/openssl/dist/apps/nseq.c    up to 1.1.1.5
	crypto/external/bsd/openssl/dist/apps/ocsp.c    up to 1.24
	crypto/external/bsd/openssl/dist/apps/openssl-vms.cnf up to 1.1.1.9
	crypto/external/bsd/openssl/dist/apps/openssl.c up to 1.8
	crypto/external/bsd/openssl/dist/apps/openssl.cnf up to 1.11
	crypto/external/bsd/openssl/dist/apps/passwd.c  up to 1.1.1.9
	crypto/external/bsd/openssl/dist/apps/pkcs12.c  up to 1.1.1.17
	crypto/external/bsd/openssl/dist/apps/pkcs7.c   up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/pkcs8.c   up to 1.1.1.10
	crypto/external/bsd/openssl/dist/apps/pkey.c    up to 1.1.1.6
	crypto/external/bsd/openssl/dist/apps/pkeyparam.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/apps/pkeyutl.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/apps/prime.c   up to 1.1.1.7
	crypto/external/bsd/openssl/dist/apps/progs.pl  up to 1.1.1.7
	crypto/external/bsd/openssl/dist/apps/rand.c    up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/rehash.c  up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/req.c     up to 1.5
	crypto/external/bsd/openssl/dist/apps/rsa.c     up to 1.1.1.10
	crypto/external/bsd/openssl/dist/apps/rsautl.c  up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/s_client.c up to 1.27
	crypto/external/bsd/openssl/dist/apps/s_server.c up to 1.28
	crypto/external/bsd/openssl/dist/apps/s_time.c  up to 1.13
	crypto/external/bsd/openssl/dist/apps/sess_id.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/apps/smime.c   up to 1.1.1.11
	crypto/external/bsd/openssl/dist/apps/speed.c   up to 1.22
	crypto/external/bsd/openssl/dist/apps/spkac.c   up to 1.1.1.6
	crypto/external/bsd/openssl/dist/apps/srp.c     up to 1.1.1.12
	crypto/external/bsd/openssl/dist/apps/storeutl.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/apps/testdsa.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/apps/testrsa.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/apps/timeouts.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/apps/ts.c      up to 1.1.1.8
	crypto/external/bsd/openssl/dist/apps/tsget.in  up to 1.1.1.3
	crypto/external/bsd/openssl/dist/apps/verify.c  up to 1.1.1.13
	crypto/external/bsd/openssl/dist/apps/version.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/apps/vms_decc_init.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/apps/x509.c    up to 1.1.1.18
	crypto/external/bsd/openssl/dist/crypto/LPdir_nyi.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/LPdir_unix.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/LPdir_vms.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/LPdir_win.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/LPdir_win32.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/LPdir_wince.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/alphacpuid.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/arm64cpuid.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/arm_arch.h up to 1.9
	crypto/external/bsd/openssl/dist/crypto/armcap.c up to 1.15
	crypto/external/bsd/openssl/dist/crypto/armv4cpuid.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/build.info up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/c64xpluscpuid.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/cpt_err.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cryptlib.c up to 1.16
	crypto/external/bsd/openssl/dist/crypto/ctype.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/cversion.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/dllmain.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ebcdic.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ex_data.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/getenv.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ia64cpuid.S up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/init.c  up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/mem.c   up to 1.13
	crypto/external/bsd/openssl/dist/crypto/mem_clr.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/mem_sec.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/mips_arch.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/o_dir.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/o_fopen.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/o_init.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/o_str.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/o_time.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/pariscid.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ppccap.c up to 1.21
	crypto/external/bsd/openssl/dist/crypto/ppccpuid.pl up to 1.10
	crypto/external/bsd/openssl/dist/crypto/s390x_arch.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/s390xcap.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/s390xcpuid.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sparccpuid.S up to 1.10
	crypto/external/bsd/openssl/dist/crypto/sparcv9cap.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/threads_none.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/threads_pthread.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/threads_win.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/uid.c   up to 1.9
	crypto/external/bsd/openssl/dist/crypto/vms_rms.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/x86_64cpuid.pl up to 1.10
	crypto/external/bsd/openssl/dist/crypto/x86cpuid.pl up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/aes/aes_cbc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/aes/aes_cfb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/aes/aes_core.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/aes/aes_ecb.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/aes_ige.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/aes/aes_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/aes/aes_misc.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/aes/aes_ofb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/aes/aes_wrap.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/aes_x86core.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/aes/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-armv4.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-c64xplus.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-ia64.S up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-mips.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-parisc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-ppc.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-s390x.pl up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aes-sparcv9.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesfx-sparcv9.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesni-mb-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesni-sha1-x86_64.pl up to 1.8
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesni-sha256-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesni-x86.pl up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesni-x86_64.pl up to 1.8
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesp8-ppc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aest4-sparcv9.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/aes/asm/aesv8-armx.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/aes/asm/bsaes-armv7.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/aes/asm/vpaes-armv8.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/aes/asm/vpaes-ppc.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/aes/asm/vpaes-x86.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/aes/asm/vpaes-x86_64.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/aria/aria.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/asn1/a_bitstr.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/a_d2i_fp.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/a_digest.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/asn1/a_dup.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/asn1/a_gentm.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/asn1/a_i2d_fp.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/asn1/a_int.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/asn1/a_mbstr.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/a_object.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/asn1/a_octet.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/a_print.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/asn1/a_sign.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/asn1/a_strex.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/asn1/a_strnid.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/a_time.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/asn1/a_type.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/asn1/a_utctm.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/a_utf8.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/a_verify.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/asn1/ameth_lib.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_err.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_gen.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_item_list.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_item_list.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_lib.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/asn1/asn1_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/asn1/asn_mime.c up to 1.14
	crypto/external/bsd/openssl/dist/crypto/asn1/asn_moid.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/asn1/asn_mstbl.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/asn1/asn_pack.c up to 1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/bio_asn1.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/asn1/bio_ndef.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/asn1/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/asn1/charmap.h up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/asn1/charmap.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/d2i_pr.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/asn1/d2i_pu.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/evp_asn1.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/asn1/f_int.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/asn1/f_string.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/asn1/n_pkey.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/asn1/nsseq.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/p5_pbe.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/p5_pbev2.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/asn1/p5_scrypt.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/p8_pkey.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/standard_methods.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/asn1/t_bitst.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/t_pkey.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/t_spki.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_dec.c up to 1.12
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_enc.c up to 1.12
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_fre.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_new.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_prn.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_scn.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_typ.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/tasn_utl.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/tbl_standard.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/asn1/x_algor.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/asn1/x_bignum.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/asn1/x_info.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/x_int64.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/x_long.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/x_pkey.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/asn1/x_sig.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/x_spki.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/asn1/x_val.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/async/async.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/async/async_err.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/async/async_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/async/async_wait.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/async/arch/async_null.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/async/arch/async_null.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/async/arch/async_posix.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/async/arch/async_posix.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/async/arch/async_win.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/async/arch/async_win.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/bf/bf_cfb64.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bf/bf_ecb.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bf/bf_enc.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bf/bf_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/bf/bf_ofb64.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bf/bf_pi.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bf/bf_skey.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bf/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/bf/asm/bf-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bio/bf_buff.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bio/bf_lbuf.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bio/bf_nbio.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/bio/bf_null.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bio/bio_cb.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bio/bio_err.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bio/bio_lib.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/bio/bio_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/bio/bio_meth.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bio/bss_acpt.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/bio/bss_bio.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bio/bss_conn.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/bio/bss_dgram.c up to 1.1.1.20
	crypto/external/bsd/openssl/dist/crypto/bio/bss_fd.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bio/bss_file.c up to 1.14
	crypto/external/bsd/openssl/dist/crypto/bio/bss_log.c up to 1.14
	crypto/external/bsd/openssl/dist/crypto/bio/bss_mem.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/bio/bss_null.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bio/bss_sock.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bio/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/bn/README.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/bn_add.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bn/bn_asm.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_blind.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_const.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/bn_ctx.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_depr.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/bn_dh.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/bn_div.c up to 1.1.1.16
	crypto/external/bsd/openssl/dist/crypto/bn/bn_err.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bn/bn_exp.c up to 1.22
	crypto/external/bsd/openssl/dist/crypto/bn/bn_exp2.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/bn_gcd.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/bn/bn_gf2m.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/bn/bn_intern.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/bn_kron.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/bn_lib.c up to 1.17
	crypto/external/bsd/openssl/dist/crypto/bn/bn_local.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/bn_mod.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bn/bn_mont.c up to 1.14
	crypto/external/bsd/openssl/dist/crypto/bn/bn_mpi.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/bn_mul.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_nist.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_prime.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/bn/bn_prime.h up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_prime.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/bn_print.c up to 1.5
	crypto/external/bsd/openssl/dist/crypto/bn/bn_rand.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/bn/bn_recp.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/bn_shift.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_sqr.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/bn_sqrt.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/bn_srp.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/bn_word.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/bn_x931p.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bn/build.info up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/rsaz_exp.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/rsaz_exp.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/alpha-mont.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/asm/armv4-gf2m.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bn/asm/armv4-mont.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/asm/armv8-mont.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/asm/bn-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/asm/bn-c64xplus.asm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/bn/asm/c64xplus-gf2m.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/asm/co-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/asm/ia64-mont.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/ia64.S up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/mips-mont.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/asm/mips.pl up to 1.11
	crypto/external/bsd/openssl/dist/crypto/bn/asm/parisc-mont.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/bn/asm/ppc-mont.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/asm/ppc.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/asm/ppc64-mont.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/asm/rsaz-avx2.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/asm/rsaz-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/s390x-gf2m.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/s390x-mont.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/bn/asm/s390x.S up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/sparct4-mont.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/sparcv8.S up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/asm/sparcv8plus.S up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/asm/sparcv9-gf2m.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/bn/asm/sparcv9-mont.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/sparcv9a-mont.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/bn/asm/via-mont.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/vis3-mont.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/x86-gf2m.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/bn/asm/x86-mont.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/bn/asm/x86_64-gcc.c up to 1.13
	crypto/external/bsd/openssl/dist/crypto/bn/asm/x86_64-gf2m.pl up to 1.11
	crypto/external/bsd/openssl/dist/crypto/bn/asm/x86_64-mont.pl up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/bn/asm/x86_64-mont5.pl up to 1.1.1.15
	crypto/external/bsd/openssl/dist/crypto/buffer/buf_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/buffer/buffer.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/buffer/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/camellia/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/camellia/camellia.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_cbc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_cfb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_ctr.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_ecb.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_misc.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/camellia/cmll_ofb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/camellia/asm/cmll-x86.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/camellia/asm/cmll-x86_64.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/camellia/asm/cmllt4-sparcv9.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/cast/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/cast/c_cfb64.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cast/c_ecb.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cast/c_enc.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cast/c_ofb64.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cast/c_skey.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cast/cast_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cast/cast_s.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/cast/asm/cast-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/chacha/build.info up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/chacha/chacha_enc.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-armv4.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-armv8.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-c64xplus.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-ppc.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-s390x.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-x86.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/chacha/asm/chacha-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cmac/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cmac/cmac.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/cms/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cms/cms_asn1.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/cms/cms_att.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cms/cms_cd.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cms/cms_dd.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/cms/cms_enc.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/cms/cms_env.c up to 1.1.1.15
	crypto/external/bsd/openssl/dist/crypto/cms/cms_err.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/cms/cms_ess.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/cms/cms_io.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/cms/cms_kari.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/cms/cms_lib.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/cms/cms_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/cms/cms_pwri.c up to 1.13
	crypto/external/bsd/openssl/dist/crypto/cms/cms_sd.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/cms/cms_smime.c up to 1.1.1.16
	crypto/external/bsd/openssl/dist/crypto/comp/c_zlib.c up to 1.10
	crypto/external/bsd/openssl/dist/crypto/comp/comp_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/comp/comp_lib.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/comp/comp_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/conf/conf_api.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/conf/conf_def.c up to 1.15
	crypto/external/bsd/openssl/dist/crypto/conf/conf_def.h up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/conf/conf_err.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/conf/conf_lib.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/conf/conf_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/conf/conf_mall.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/conf/conf_mod.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/conf/conf_sap.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/conf/conf_ssl.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/conf/keysets.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ct/ct_b64.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ct/ct_err.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ct/ct_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ct/ct_log.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ct/ct_oct.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ct/ct_policy.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ct/ct_prn.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ct/ct_sct.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ct/ct_sct_ctx.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ct/ct_vfy.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ct/ct_x509v3.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/des/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/des/cbc_cksm.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/des/cbc_enc.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/des/cfb64ede.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/des/cfb64enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/cfb_enc.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/des/des_enc.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/des/des_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/des/ecb3_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/ecb_enc.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/des/fcrypt.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/des/fcrypt_b.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/ncbc_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/ofb64ede.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/ofb64enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/ofb_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/pcbc_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/qud_cksm.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/des/rand_key.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/des/set_key.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/des/spr.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/str2key.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/des/xcbc_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/asm/crypt586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/des/asm/des-586.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/des/asm/des_enc.m4 up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/des/asm/desboth.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/des/asm/dest4-sparcv9.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/dh/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/dh/dh_ameth.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/dh/dh_asn1.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/dh/dh_check.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/dh/dh_depr.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/dh/dh_err.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/dh/dh_gen.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/dh/dh_kdf.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/dh/dh_key.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/dh/dh_lib.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/dh/dh_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/dh/dh_meth.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/dh/dh_pmeth.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/dh/dh_prn.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/dh/dh_rfc5114.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/dsa/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_ameth.c up to 1.12
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_asn1.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_depr.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_err.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_gen.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_key.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_lib.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_meth.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_ossl.c up to 1.1.1.15
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_pmeth.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_prn.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_sign.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/dsa/dsa_vrf.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/dso/dso_dl.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/dso/dso_dlfcn.c up to 1.17
	crypto/external/bsd/openssl/dist/crypto/dso/dso_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/dso/dso_lib.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/dso/dso_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/dso/dso_openssl.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/dso/dso_vms.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/dso/dso_win32.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/ec/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve25519.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/ec2_oct.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/ec/ec2_smpl.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/ec/ec_ameth.c up to 1.13
	crypto/external/bsd/openssl/dist/crypto/ec/ec_asn1.c up to 1.14
	crypto/external/bsd/openssl/dist/crypto/ec/ec_check.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/ec_curve.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/ec/ec_cvt.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/ec/ec_err.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/ec/ec_key.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/ec/ec_kmeth.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/ec_lib.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/ec/ec_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/ec_mult.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/ec/ec_oct.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ec/ec_pmeth.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/ec/ec_print.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/ecdh_kdf.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/ecdh_ossl.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/ecdsa_ossl.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ec/ecdsa_sign.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/ecdsa_vrf.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/eck_prn.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_mont.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nist.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nistp224.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nistp256.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nistp521.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nistputil.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nistz256.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_nistz256_table.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_oct.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ec/ecp_smpl.c up to 1.13
	crypto/external/bsd/openssl/dist/crypto/ec/ecx_meth.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistz256-armv4.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistz256-armv8.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistz256-ppc64.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistz256-sparcv9.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistz256-x86.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ec/asm/ecp_nistz256-x86_64.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/ec/asm/x25519-ppc64.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/asm/x25519-x86_64.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/curve448.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/curve448_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/curve448_tables.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/curve448utils.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/ed448.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/eddsa.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/f_generic.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/field.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/point_448.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/scalar.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/word.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_32/arch_intrinsics.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_32/f_impl.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/engine/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/engine/eng_all.c up to 1.15
	crypto/external/bsd/openssl/dist/crypto/engine/eng_cnf.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/eng_ctrl.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/engine/eng_dyn.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/engine/eng_err.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/eng_fat.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/engine/eng_init.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/eng_lib.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/engine/eng_list.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/engine/eng_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/engine/eng_openssl.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/engine/eng_pkey.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/engine/eng_rdrand.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/engine/eng_table.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/engine/tb_asnmth.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/engine/tb_cipher.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/tb_dh.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/tb_digest.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/tb_dsa.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/tb_eckey.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/engine/tb_pkmeth.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/tb_rand.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/engine/tb_rsa.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/err/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/err/err.c up to 1.1.1.15
	crypto/external/bsd/openssl/dist/crypto/err/err_all.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/err/err_prn.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/err/openssl.ec up to 1.7
	crypto/external/bsd/openssl/dist/crypto/err/openssl.txt up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/evp/bio_b64.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/bio_enc.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/evp/bio_md.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/evp/bio_ok.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/evp/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/evp/c_allc.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/evp/c_alld.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/evp/cmeth_lib.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/evp/digest.c up to 1.1.1.15
	crypto/external/bsd/openssl/dist/crypto/evp/e_aes.c up to 1.26
	crypto/external/bsd/openssl/dist/crypto/evp/e_aes_cbc_hmac_sha1.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/evp/e_aes_cbc_hmac_sha256.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/e_aria.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/e_bf.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/e_camellia.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/e_cast.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/e_chacha20_poly1305.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/evp/e_des.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/e_des3.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/evp/e_idea.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/e_null.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/evp/e_old.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/e_rc2.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/evp/e_rc4.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/e_rc4_hmac_md5.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/e_rc5.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/e_seed.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/e_sm4.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/evp/e_xcbc_d.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/evp/encode.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/evp/evp_cnf.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/evp_enc.c up to 1.16
	crypto/external/bsd/openssl/dist/crypto/evp/evp_err.c up to 1.1.1.17
	crypto/external/bsd/openssl/dist/crypto/evp/evp_key.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/evp/evp_lib.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/evp/evp_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/evp/evp_pbe.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/evp/evp_pkey.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/evp/m_null.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/evp/m_sigver.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/names.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/evp/p5_crpt.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/p5_crpt2.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/evp/p_dec.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/p_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/evp/p_lib.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/evp/p_open.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/p_seal.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/evp/p_sign.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/p_verify.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/pbe_scrypt.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/evp/pmeth_gn.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/evp/pmeth_lib.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/hmac/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/hmac/hmac.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/hmac/hmac_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/idea/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/idea/i_cbc.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/idea/i_cfb64.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/idea/i_ecb.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/idea/i_ofb64.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/idea/idea_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/kdf/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/kdf/kdf_err.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/lhash/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/lhash/lh_stats.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/lhash/lhash.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/lhash/lhash_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/md2/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/md2/md2_dgst.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/md2/md2_one.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/md4/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/md4/md4_dgst.c up to 1.10
	crypto/external/bsd/openssl/dist/crypto/md4/md4_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/md4/md4_one.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/md5/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/md5/md5_dgst.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/md5/md5_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/md5/md5_one.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/md5/asm/md5-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/md5/asm/md5-sparcv9.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/md5/asm/md5-x86_64.pl up to 1.6
	crypto/external/bsd/openssl/dist/crypto/mdc2/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/mdc2/mdc2_one.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/mdc2/mdc2dgst.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/modes/cbc128.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/modes/ccm128.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/cfb128.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/ctr128.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/modes/cts128.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/gcm128.c up to 1.13
	crypto/external/bsd/openssl/dist/crypto/modes/ocb128.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/modes/ofb128.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/wrap128.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/modes/xts128.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/modes/asm/aesni-gcm-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-alpha.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-armv4.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-c64xplus.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-ia64.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-parisc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-s390x.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-sparcv9.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-x86.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghash-x86_64.pl up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghashp8-ppc.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/modes/asm/ghashv8-armx.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/objects/o_names.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/objects/obj_dat.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/objects/obj_dat.h up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/objects/obj_dat.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/objects/obj_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/objects/obj_lib.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/objects/obj_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/objects/obj_mac.num up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/objects/obj_xref.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/objects/obj_xref.h up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/objects/obj_xref.txt up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/objects/objects.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/objects/objects.txt up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/objects/objxref.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/ocsp/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_asn.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_cl.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_ext.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_lib.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_prn.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_srv.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ocsp/ocsp_vfy.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/ocsp/v3_ocsp.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/pem/pem_all.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pem/pem_err.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pem/pem_info.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/pem/pem_lib.c up to 1.1.1.17
	crypto/external/bsd/openssl/dist/crypto/pem/pem_oth.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/pem/pem_pk8.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pem/pem_pkey.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/pem/pem_sign.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/pem/pem_x509.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/pem/pem_xaux.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/pem/pvkfmt.c up to 1.1.1.16
	crypto/external/bsd/openssl/dist/crypto/perlasm/arm-xlate.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/perlasm/cbc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/perlasm/ppc-xlate.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/perlasm/sparcv9_modes.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/perlasm/x86_64-xlate.pl up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/perlasm/x86asm.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/perlasm/x86gas.pl up to 1.7
	crypto/external/bsd/openssl/dist/crypto/perlasm/x86masm.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/perlasm/x86nasm.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_add.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_asn.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_attr.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_crpt.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_crt.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_decr.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_init.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_key.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_kiss.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_mutl.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_npas.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_p8d.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_p8e.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_sbag.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/pkcs12/p12_utl.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/pkcs12/pk12err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/pkcs7/bio_pk7.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_asn1.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_attr.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_doit.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_lib.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_mime.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_smime.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/pkcs7/pkcs7err.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/poly1305/build.info up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305_base2_44.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/poly1305/poly1305_ieee754.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-armv4.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-armv8.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-c64xplus.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-mips.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-ppc.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-ppcfp.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-s390x.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-sparcv9.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-x86.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/poly1305/asm/poly1305-x86_64.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rand/build.info up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/rand/rand_egd.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/rand/rand_err.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/rand/rand_lib.c up to 1.1.1.18
	crypto/external/bsd/openssl/dist/crypto/rand/rand_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/rand/randfile.c up to 1.14
	crypto/external/bsd/openssl/dist/crypto/rc2/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/rc2/rc2_cbc.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc2/rc2_ecb.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/rc2/rc2_local.h up to 1.3
	crypto/external/bsd/openssl/dist/crypto/rc2/rc2_skey.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rc2/rc2cfb64.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc2/rc2ofb64.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc4/build.info up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rc4/rc4_enc.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/rc4/rc4_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/rc4/rc4_skey.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/rc4/asm/rc4-586.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/rc4/asm/rc4-c64xplus.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rc4/asm/rc4-md5-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rc4/asm/rc4-parisc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rc4/asm/rc4-s390x.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rc4/asm/rc4-x86_64.pl up to 1.8
	crypto/external/bsd/openssl/dist/crypto/rc5/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/rc5/rc5_ecb.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc5/rc5_enc.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc5/rc5_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/rc5/rc5_skey.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rc5/rc5cfb64.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc5/rc5ofb64.c up to 1.6
	crypto/external/bsd/openssl/dist/crypto/rc5/asm/rc5-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ripemd/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ripemd/rmd_dgst.c up to 1.10
	crypto/external/bsd/openssl/dist/crypto/ripemd/rmd_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ripemd/rmd_one.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ripemd/rmdconst.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/ripemd/asm/rmd-586.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rsa/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_ameth.c up to 1.1.1.17
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_asn1.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_chk.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_crpt.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_depr.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_err.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_gen.c up to 1.7
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_lib.c up to 1.8
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_meth.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_mp.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_none.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_oaep.c up to 1.12
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_ossl.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_pk1.c up to 1.10
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_pmeth.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_prn.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_pss.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_saos.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_sign.c up to 1.10
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_x931.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/rsa/rsa_x931g.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/seed/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/seed/seed.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/seed/seed_cbc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/seed/seed_cfb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/seed/seed_ecb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/seed/seed_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/seed/seed_ofb.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/sha/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/keccak1600.c up to 1.4
	crypto/external/bsd/openssl/dist/crypto/sha/sha1_one.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sha/sha1dgst.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/sha/sha256.c up to 1.11
	crypto/external/bsd/openssl/dist/crypto/sha/sha512.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/sha/sha_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-armv4.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-armv8.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-avx2.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-avx512.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-avx512vl.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-c64x.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-mmx.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-ppc64.pl up to 1.4
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-s390x.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600-x86_64.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/keccak1600p8-ppc.pl up to 1.4
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-586.pl up to 1.1.1.12
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-alpha.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-armv4-large.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-armv8.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-c64xplus.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-ia64.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-mb-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-mips.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-parisc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-ppc.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-s390x.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-sparcv9.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-sparcv9a.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-thumb.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha1-x86_64.pl up to 1.11
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha256-586.pl up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha256-armv4.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha256-c64xplus.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha256-mb-x86_64.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-586.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-armv4.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-armv8.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-c64xplus.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-ia64.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-mips.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-parisc.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-ppc.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-s390x.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-sparcv9.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512-x86_64.pl up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/sha/asm/sha512p8-ppc.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/siphash/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/siphash/siphash.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/sm2/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/sm2/sm2_crypt.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/sm2/sm2_err.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sm2/sm2_sign.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/sm3/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/sm3/sm3.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/sm3/sm3_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/sm4/sm4.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/srp/srp_lib.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/srp/srp_vfy.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/stack/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/stack/stack.c up to 1.5
	crypto/external/bsd/openssl/dist/crypto/store/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/store/store_err.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/store/store_init.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/store/store_lib.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/store/store_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/store/store_register.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/store/store_strings.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ts/ts_asn1.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/ts/ts_conf.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ts/ts_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ts/ts_lib.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ts/ts_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ts/ts_req_print.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ts/ts_req_utils.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ts/ts_rsp_print.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ts/ts_rsp_sign.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/ts/ts_rsp_utils.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ts/ts_rsp_verify.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/ts/ts_verify_ctx.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/txt_db/txt_db.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/ui/ui_err.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/ui/ui_lib.c up to 1.9
	crypto/external/bsd/openssl/dist/crypto/ui/ui_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/ui/ui_null.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/ui/ui_openssl.c up to 1.19
	crypto/external/bsd/openssl/dist/crypto/ui/ui_util.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/whrlpool/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/whrlpool/wp_block.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/whrlpool/wp_dgst.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/whrlpool/wp_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/crypto/whrlpool/asm/wp-mmx.pl up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/whrlpool/asm/wp-x86_64.pl up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/x509/by_dir.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/crypto/x509/by_file.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/t_crl.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/x509/t_req.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/x509/t_x509.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x509_att.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/crypto/x509/x509_cmp.c up to 1.1.1.18
	crypto/external/bsd/openssl/dist/crypto/x509/x509_d2.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/x509/x509_def.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/x509/x509_err.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/crypto/x509/x509_ext.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x509_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/x509/x509_lu.c up to 1.1.1.15
	crypto/external/bsd/openssl/dist/crypto/x509/x509_meth.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/crypto/x509/x509_obj.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/x509/x509_r2x.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x509_req.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/x509/x509_set.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/x509_txt.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/crypto/x509/x509_v3.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/x509_vfy.c up to 1.28
	crypto/external/bsd/openssl/dist/crypto/x509/x509_vpm.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/crypto/x509/x509cset.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x509name.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/x509rset.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x509spki.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x509type.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/x_all.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/crypto/x509/x_attrib.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/x509/x_crl.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/x_exten.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/x509/x_name.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/crypto/x509/x_pubkey.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/crypto/x509/x_req.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/crypto/x509/x_x509.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/crypto/x509/x_x509a.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/demos/bio/Makefile up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/bio/accept.cnf up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/bio/client-arg.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/bio/client-conf.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/bio/cmod.cnf up to 1.1.1.3
	crypto/external/bsd/openssl/dist/demos/bio/connect.cnf up to 1.1.1.3
	crypto/external/bsd/openssl/dist/demos/bio/saccept.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/demos/bio/sconnect.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/bio/server-arg.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/bio/server-cmod.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/demos/bio/server-conf.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/certs/ca.cnf up to 1.1.1.2
	crypto/external/bsd/openssl/dist/demos/certs/apps/apps.cnf up to 1.1.1.2
	crypto/external/bsd/openssl/dist/demos/cms/cms_comp.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/cms/cms_ddec.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/cms/cms_dec.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/cms/cms_denc.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/cms/cms_enc.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/cms/cms_sign.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/cms/cms_sign2.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/cms/cms_uncomp.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/cms/cms_ver.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/demos/pkcs12/pkread.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/demos/pkcs12/pkwrite.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/smime/smdec.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/smime/smenc.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/smime/smsign.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/smime/smsign2.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/demos/smime/smver.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/fingerprints.txt up to 1.1.1.9
	crypto/external/bsd/openssl/dist/doc/HOWTO/certificates.txt up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/HOWTO/keys.txt up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man1/CA.pl.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man1/openssl.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man1/tsget.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ADMISSIONS.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_INTEGER_get_int64.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_ITEM_lookup.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_OBJECT_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_STRING_TABLE_add.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_STRING_length.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_STRING_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_STRING_print_ex.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_TIME_set.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_TYPE_get.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/ASN1_generate_nconf.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ASYNC_WAIT_CTX_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/ASYNC_start_job.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/BF_encrypt.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_ADDR.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_ADDRINFO.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_connect.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/BIO_ctrl.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_base64.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_buffer.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_cipher.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_md.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_null.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_f_ssl.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_find_type.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_get_data.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_get_ex_new_index.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_meth_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_new_CMS.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_parse_hostserv.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_printf.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_push.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_read.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_accept.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_bio.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_connect.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_fd.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_file.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_mem.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_null.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_s_socket.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BIO_set_callback.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BIO_should_retry.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_BLINDING_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_CTX_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_CTX_start.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BN_add.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BN_add_word.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_bn2bin.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BN_cmp.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BN_copy.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_generate_prime.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/BN_mod_inverse.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_mod_mul_montgomery.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BN_mod_mul_reciprocal.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BN_num_bytes.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_rand.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/BN_security_bits.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/BN_set_bit.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/BN_swap.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BN_zero.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/BUF_MEM_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CMS_add0_cert.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/CMS_add1_recipient_cert.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_add1_signer.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_compress.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_decrypt.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CMS_encrypt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_final.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CMS_get0_RecipientInfos.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_get0_SignerInfos.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_get0_type.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CMS_get1_ReceiptRequest.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_sign.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_sign_receipt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_uncompress.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CMS_verify.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/CMS_verify_receipt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CONF_modules_free.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CONF_modules_load_file.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/CRYPTO_THREAD_run_once.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/CRYPTO_get_ex_new_index.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CRYPTO_memcmp.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CTLOG_STORE_get0_log_by_id.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/CTLOG_STORE_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CTLOG_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/CT_POLICY_EVAL_CTX_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DEFINE_STACK_OF.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DES_random_key.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/DH_generate_key.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DH_generate_parameters.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DH_get0_pqg.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DH_get_1024_160.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DH_meth_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DH_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DH_new_by_nid.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DH_set_method.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DH_size.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DSA_SIG_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_do_sign.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_dup_DH.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_generate_key.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DSA_generate_parameters.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_get0_pqg.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_meth_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DSA_set_method.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DSA_sign.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DSA_size.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/DTLS_get_data_mtu.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DTLS_set_timer_cb.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/DTLSv1_listen.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/ECDSA_SIG_new.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/ECPKParameters_print.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EC_GFp_simple_method.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EC_GROUP_copy.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/EC_GROUP_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EC_KEY_get_enc_flags.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EC_KEY_new.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/EC_POINT_add.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EC_POINT_new.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/ENGINE_add.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/ERR_GET_LIB.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ERR_clear_error.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ERR_error_string.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ERR_get_error.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ERR_load_crypto_strings.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ERR_load_strings.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ERR_print_errors.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ERR_put_error.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/ERR_remove_state.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/ERR_set_mark.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_BytesToKey.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_CIPHER_CTX_get_cipher_data.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_CIPHER_meth_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_DigestInit.pod up to 1.1.1.7
	crypto/external/bsd/openssl/dist/doc/man3/EVP_DigestSignInit.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/EVP_DigestVerifyInit.pod up to 1.1.1.7
	crypto/external/bsd/openssl/dist/doc/man3/EVP_EncodeInit.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_EncryptInit.pod up to 1.1.1.9
	crypto/external/bsd/openssl/dist/doc/man3/EVP_MD_meth_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_OpenInit.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_ASN1_METHOD.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_ctrl.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_set1_pbe_pass.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_set_hkdf_md.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_md.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_set_scrypt_N.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_CTX_set_tls1_prf_md.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_asn1_get_count.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_decrypt.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_derive.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_encrypt.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_get_default_digest_nid.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_keygen.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_meth_get_count.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_meth_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_new.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_print_private.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_set1_RSA.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_sign.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_verify.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_PKEY_verify_recover.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_SealInit.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_SignInit.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/EVP_VerifyInit.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_bf_cbc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_blake2b512.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_cast5_cbc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_chacha20.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_desx_cbc.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_idea_cbc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_md2.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_md4.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_md5.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/EVP_mdc2.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_rc2_cbc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_rc4.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_rc5_32_12_16_cbc.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/EVP_ripemd160.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_seed_cbc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_sha1.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_sha224.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_sha3_224.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_sm3.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/EVP_sm4_cbc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/EVP_whirlpool.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/HMAC.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/MD5.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/MDC2_Init.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OBJ_nid2obj.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/OCSP_REQUEST_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OCSP_cert_to_id.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OCSP_request_add1_nonce.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OCSP_resp_find_status.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OCSP_response_status.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OCSP_sendreq_new.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_Applink.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_LH_COMPFUNC.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_LH_stats.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_config.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_fork_prepare.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_ia32cap.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_init_crypto.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_init_ssl.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_instrument_bus.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_load_builtin_modules.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_malloc.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/OPENSSL_secure_malloc.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_STORE_INFO.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_STORE_LOADER.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_STORE_SEARCH.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_STORE_expect.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OSSL_STORE_open.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/OpenSSL_add_all_algorithms.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/PEM_bytes_read_bio.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/PEM_read.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/PEM_read_CMS.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/PEM_read_bio_PrivateKey.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/PEM_read_bio_ex.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/PEM_write_bio_CMS_stream.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/PEM_write_bio_PKCS7_stream.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_create.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_newpass.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/PKCS12_parse.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/PKCS5_PBKDF2_HMAC.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_decrypt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_encrypt.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_sign.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_sign_add_signer.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/PKCS7_verify.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/RAND_add.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/RAND_bytes.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/RAND_cleanup.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RAND_egd.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/RAND_load_file.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RAND_set_rand_method.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/RC4_set_key.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/RIPEMD160_Init.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RSA_blinding_on.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/RSA_check_key.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/RSA_generate_key.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RSA_get0_key.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/RSA_meth_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RSA_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/RSA_padding_add_PKCS1_type_1.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/RSA_print.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/RSA_private_encrypt.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RSA_public_encrypt.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/RSA_set_method.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RSA_sign.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/RSA_sign_ASN1_OCTET_STRING.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/RSA_size.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SCT_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SCT_print.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SCT_validate.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SHA256_Init.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SMIME_read_CMS.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SMIME_read_PKCS7.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SMIME_write_CMS.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SMIME_write_PKCS7.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CIPHER_get_name.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_COMP_add_compression_method.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CONF_CTX_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CONF_CTX_set1_prefix.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CONF_CTX_set_flags.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CONF_CTX_set_ssl_ctx.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CONF_cmd.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CONF_cmd_argv.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_add1_chain_cert.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_add_extra_chain_cert.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_add_session.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_config.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_ctrl.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_dane_enable.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_flush_sessions.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_free.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_get0_param.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_get_verify_mode.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_has_client_custom_ext.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_load_verify_locations.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_sess_number.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_sess_set_cache_size.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_sess_set_get_cb.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_sessions.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set0_CA_list.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set1_curves.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set1_sigalgs.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set1_verify_cert_store.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_alpn_select_cb.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_cert_cb.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_cert_store.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_cert_verify_callback.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_cipher_list.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_client_cert_cb.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_client_hello_cb.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_ct_validation_callback.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_ctlog_list_file.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_default_passwd_cb.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_generate_session_id.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_info_callback.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_keylog_callback.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_max_cert_list.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_min_proto_version.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_mode.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_msg_callback.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_num_tickets.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_options.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_psk_client_callback.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_quiet_shutdown.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_read_ahead.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_record_padding_callback.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_security_level.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_session_cache_mode.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_session_id_context.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_session_ticket_cb.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_split_send_fragment.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_ssl_version.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_stateless_cookie_generate_cb.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_timeout.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_tlsext_servername_callback.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_tlsext_status_cb.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_tlsext_ticket_key_cb.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_tlsext_use_srtp.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_tmp_dh_callback.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_set_verify.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_use_certificate.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_use_psk_identity_hint.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_CTX_use_serverinfo.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_free.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get0_cipher.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get0_hostname.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get0_id_context.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get0_peer.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get_compress_id.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get_protocol_version.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_get_time.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_has_ticket.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_is_resumable.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_print.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_SESSION_set1_id.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_accept.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_alert_type_string.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_alloc_buffers.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_check_chain.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_clear.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_connect.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_do_handshake.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_export_keying_material.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_extension_supported.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_free.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get0_peer_scts.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_SSL_CTX.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_all_async_fds.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_ciphers.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_client_random.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_current_cipher.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_default_timeout.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_error.pod up to 1.1.1.8
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_extms_support.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_fd.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_peer_cert_chain.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_peer_certificate.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_peer_signature_nid.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_peer_tmp_key.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_psk_identity.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_rbio.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_session.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_shared_sigalgs.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_verify_result.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_get_version.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_in_init.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_key_update.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_library_init.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_load_client_CA_file.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_new.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_pending.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_read.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/SSL_read_early_data.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_rstate_string.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_session_reused.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set1_host.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_bio.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_connect_state.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_fd.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_session.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_shutdown.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_set_verify_result.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/SSL_shutdown.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/SSL_state_string.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/SSL_want.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/SSL_write.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/UI_STRING.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/UI_UTIL_read_pw.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/UI_create_method.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/UI_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/X509V3_get_d2i.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_ALGOR_dup.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_CRL_get0_by_serial.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_EXTENSION_set_object.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_LOOKUP.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_LOOKUP_hash_dir.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_LOOKUP_meth_new.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/X509_NAME_ENTRY_get_object.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_NAME_add_entry_by_txt.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_NAME_get0_der.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_NAME_get_index_by_NID.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_NAME_print_ex.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_PUBKEY_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_SIG_get0.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_CTX_get_error.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_CTX_new.pod up to 1.1.1.7
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_CTX_set_verify_cb.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_add_cert.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_get0_param.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_new.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/X509_STORE_set_verify_cb_func.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/X509_VERIFY_PARAM_set_flags.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man3/X509_check_ca.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_check_host.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_check_issued.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_check_private_key.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_check_purpose.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_cmp.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_cmp_time.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_digest.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_dup.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_get0_notBefore.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_get0_signature.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/X509_get0_uids.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_get_extension_flags.pod up to 1.1.1.5
	crypto/external/bsd/openssl/dist/doc/man3/X509_get_pubkey.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_get_serialNumber.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_get_subject_name.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/X509_get_version.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_new.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509_sign.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/X509_verify_cert.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/X509v3_get_ext_by_NID.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/d2i_PKCS8PrivateKey_bio.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/d2i_PrivateKey.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man3/d2i_SSL_SESSION.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/d2i_X509.pod up to 1.1.1.7
	crypto/external/bsd/openssl/dist/doc/man3/i2d_CMS_bio_stream.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/i2d_PKCS7_bio_stream.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man3/i2d_re_X509_tbs.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man3/o2i_SCT_LIST.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man5/config.pod up to 1.1.1.6
	crypto/external/bsd/openssl/dist/doc/man5/x509v3_config.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man7/RAND.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man7/RSA-PSS.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/X25519.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man7/bio.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man7/crypto.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man7/ct.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man7/des_modes.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/evp.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man7/ossl_store-file.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/ossl_store.pod up to 1.1.1.4
	crypto/external/bsd/openssl/dist/doc/man7/passphrase-encoding.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/doc/man7/proxy-certificates.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/ssl.pod up to 1.1.1.2
	crypto/external/bsd/openssl/dist/doc/man7/x509.pod up to 1.1.1.3
	crypto/external/bsd/openssl/dist/engines/build.info up to 1.1.1.4
	crypto/external/bsd/openssl/dist/engines/e_afalg.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/engines/e_afalg.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/engines/e_afalg.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/engines/e_afalg_err.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/engines/e_afalg_err.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/engines/e_capi.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/engines/e_capi.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/engines/e_capi_err.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/engines/e_capi_err.h up to 1.1.1.7
	crypto/external/bsd/openssl/dist/engines/e_dasync.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/engines/e_dasync.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/engines/e_dasync_err.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/engines/e_dasync_err.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/engines/e_ossltest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/engines/e_ossltest.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/engines/e_ossltest_err.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/engines/e_ossltest_err.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/engines/e_padlock.c up to 1.9
	crypto/external/bsd/openssl/dist/engines/asm/e_padlock-x86.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/engines/asm/e_padlock-x86_64.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/external/perl/Downloaded.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/fuzz/README.md up to 1.1.1.4
	crypto/external/bsd/openssl/dist/fuzz/asn1.c    up to 1.1.1.4
	crypto/external/bsd/openssl/dist/fuzz/asn1parse.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/bignum.c  up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/bndiv.c   up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/client.c  up to 1.1.1.2
	crypto/external/bsd/openssl/dist/fuzz/cms.c     up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/conf.c    up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/crl.c     up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/ct.c      up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/driver.c  up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/fuzzer.h  up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/helper.py up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/mkfuzzoids.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/fuzz/oids.txt  up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/server.c  up to 1.1.1.3
	crypto/external/bsd/openssl/dist/fuzz/test-corpus.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/fuzz/x509.c    up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/crypto/__DECC_INCLUDE_EPILOGUE.H up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/__DECC_INCLUDE_PROLOGUE.H up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/aria.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/asn1.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/async.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/bn.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/crypto/bn_conf.h.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/bn_dh.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/bn_srp.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/chacha.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/cryptlib.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/ctype.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/dso_conf.h.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/ec.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/engine.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/err.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/evp.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/lhash.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/md32_common.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/objects.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/poly1305.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/rand.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/crypto/sha.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/siphash.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/sm2.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/crypto/sm2err.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/sm4.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/store.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/crypto/x509.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/__DECC_INCLUDE_EPILOGUE.H up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/__DECC_INCLUDE_PROLOGUE.H up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/bio.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/internal/comp.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/internal/conf.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/internal/constant_time.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/internal/cryptlib.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/include/internal/dane.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/dso.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/internal/dsoerr.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/internal/err.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/nelem.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/numbers.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/o_dir.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/internal/refcount.h up to 1.7
	crypto/external/bsd/openssl/dist/include/internal/sockets.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/internal/sslconf.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/internal/thread_once.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/internal/tsan_assist.h up to 1.7
	crypto/external/bsd/openssl/dist/include/openssl/__DECC_INCLUDE_EPILOGUE.H up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/__DECC_INCLUDE_PROLOGUE.H up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/aes.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/asn1_mac.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/asn1err.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/async.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/asyncerr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/bioerr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/blowfish.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/bn.h up to 1.5
	crypto/external/bsd/openssl/dist/include/openssl/bnerr.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/buffer.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/buffererr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/camellia.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/cast.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/cmac.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/cmserr.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/comp.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/comperr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/conf_api.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/conferr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/cryptoerr.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/cterr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/des.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/dh.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/dherr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/dsa.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/openssl/dsaerr.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/dtls1.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/e_os2.h up to 1.1.1.7
	crypto/external/bsd/openssl/dist/include/openssl/ebcdic.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/ec.h up to 1.1.1.7
	crypto/external/bsd/openssl/dist/include/openssl/ecdh.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/ecdsa.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/ecerr.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/include/openssl/engine.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/engineerr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/evp.h up to 1.1.1.9
	crypto/external/bsd/openssl/dist/include/openssl/evperr.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/include/openssl/hmac.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/idea.h up to 1.3
	crypto/external/bsd/openssl/dist/include/openssl/kdf.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/kdferr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/md2.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/md4.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/md5.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/mdc2.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/modes.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/obj_mac.h up to 1.1.1.8
	crypto/external/bsd/openssl/dist/include/openssl/objects.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/objectserr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/ocsperr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/ossl_typ.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/pem.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/pem2.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/pemerr.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/pkcs12err.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/pkcs7err.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/rand.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/randerr.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/openssl/rc2.h up to 1.3
	crypto/external/bsd/openssl/dist/include/openssl/rc4.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/rc5.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/ripemd.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/rsa.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/include/openssl/rsaerr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/seed.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/sha.h up to 1.3
	crypto/external/bsd/openssl/dist/include/openssl/srtp.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/ssl2.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/ssl3.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/include/openssl/sslerr.h up to 1.1.1.7
	crypto/external/bsd/openssl/dist/include/openssl/stack.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/store.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/storeerr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/symhacks.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/tls1.h up to 1.1.1.6
	crypto/external/bsd/openssl/dist/include/openssl/ts.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/tserr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/txt_db.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/uierr.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/include/openssl/whrlpool.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/include/openssl/x509err.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/include/openssl/x509v3err.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ms/applink.c   up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ms/cmp.pl      up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ms/uplink-common.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ms/uplink-ia64.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ms/uplink-x86.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/ms/uplink-x86_64.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ms/uplink.c    up to 1.1.1.6
	crypto/external/bsd/openssl/dist/ms/uplink.h    up to 1.1.1.4
	crypto/external/bsd/openssl/dist/os-dep/haiku.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/ssl/bio_ssl.c  up to 1.1.1.12
	crypto/external/bsd/openssl/dist/ssl/build.info up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ssl/d1_lib.c   up to 1.13
	crypto/external/bsd/openssl/dist/ssl/d1_msg.c   up to 1.1.1.5
	crypto/external/bsd/openssl/dist/ssl/d1_srtp.c  up to 1.8
	crypto/external/bsd/openssl/dist/ssl/methods.c  up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ssl/pqueue.c   up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ssl/s3_cbc.c   up to 1.12
	crypto/external/bsd/openssl/dist/ssl/s3_enc.c   up to 1.18
	crypto/external/bsd/openssl/dist/ssl/s3_lib.c   up to 1.31
	crypto/external/bsd/openssl/dist/ssl/s3_msg.c   up to 1.1.1.6
	crypto/external/bsd/openssl/dist/ssl/ssl_asn1.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/ssl/ssl_cert.c up to 1.1.1.19
	crypto/external/bsd/openssl/dist/ssl/ssl_cert_table.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/ssl/ssl_ciph.c up to 1.24
	crypto/external/bsd/openssl/dist/ssl/ssl_conf.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/ssl_err.c  up to 1.20
	crypto/external/bsd/openssl/dist/ssl/ssl_init.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/ssl_lib.c  up to 1.23
	crypto/external/bsd/openssl/dist/ssl/ssl_local.h up to 1.1.1.5
	crypto/external/bsd/openssl/dist/ssl/ssl_mcnf.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/ssl/ssl_rsa.c  up to 1.1.1.12
	crypto/external/bsd/openssl/dist/ssl/ssl_sess.c up to 1.12
	crypto/external/bsd/openssl/dist/ssl/ssl_stat.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/ssl/ssl_txt.c  up to 1.1.1.11
	crypto/external/bsd/openssl/dist/ssl/ssl_utst.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/ssl/t1_enc.c   up to 1.23
	crypto/external/bsd/openssl/dist/ssl/t1_lib.c   up to 1.37
	crypto/external/bsd/openssl/dist/ssl/t1_trce.c  up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/tls13_enc.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/tls_srp.c  up to 1.8
	crypto/external/bsd/openssl/dist/ssl/record/dtls1_bitmap.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ssl/record/rec_layer_d1.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/ssl/record/rec_layer_s3.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/ssl/record/record.h up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ssl/record/record_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/ssl/record/ssl3_buffer.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/record/ssl3_record.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/ssl/record/ssl3_record_tls13.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ssl/statem/extensions.c up to 1.1.1.11
	crypto/external/bsd/openssl/dist/ssl/statem/extensions_clnt.c up to 1.1.1.9
	crypto/external/bsd/openssl/dist/ssl/statem/extensions_cust.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/ssl/statem/extensions_srvr.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/statem/statem.c up to 1.1.1.8
	crypto/external/bsd/openssl/dist/ssl/statem/statem.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ssl/statem/statem_clnt.c up to 1.1.1.15
	crypto/external/bsd/openssl/dist/ssl/statem/statem_dtls.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/ssl/statem/statem_lib.c up to 1.1.1.12
	crypto/external/bsd/openssl/dist/ssl/statem/statem_local.h up to 1.1.1.3
	crypto/external/bsd/openssl/dist/ssl/statem/statem_srvr.c up to 1.1.1.13
	crypto/external/bsd/openssl/dist/test/CAtsa.cnf up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/README.ssltest.md up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/aborttest.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/afalgtest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/asn1_decode_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/asn1_encode_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/asn1_internal_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/asn1_string_table_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/asn1_time_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/asynciotest.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/asynctest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/bad_dtls_test.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/bftest.c  up to 1.5
	crypto/external/bsd/openssl/dist/test/bio_callback_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/bio_enc_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/bio_memleak_test.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/bioprinttest.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/bntest.c  up to 1.11
	crypto/external/bsd/openssl/dist/test/bntests.pl up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/build.info up to 1.1.1.15
	crypto/external/bsd/openssl/dist/test/casttest.c up to 1.4
	crypto/external/bsd/openssl/dist/test/chacha_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/cipher_overhead_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/cipherbytes_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/cipherlist_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/ciphername_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/clienthellotest.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/cmactest.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/cms-examples.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/cmsapitest.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/conf_include_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/constant_time_test.c up to 1.6
	crypto/external/bsd/openssl/dist/test/crltest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/ct_test.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/ctype_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/curve448_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/d2i_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/dane-cross.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/danetest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/danetest.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/destest.c up to 1.5
	crypto/external/bsd/openssl/dist/test/dhtest.c  up to 1.6
	crypto/external/bsd/openssl/dist/test/drbgtest.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/dsa_no_digest_size_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/dsatest.c up to 1.6
	crypto/external/bsd/openssl/dist/test/dtls_mtu_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/dtlstest.c up to 1.1.1.10
	crypto/external/bsd/openssl/dist/test/dtlsv1listentest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/ec_internal_test.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/ecdsatest.c up to 1.8
	crypto/external/bsd/openssl/dist/test/ecstresstest.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/ectest.c  up to 1.10
	crypto/external/bsd/openssl/dist/test/enginetest.c up to 1.5
	crypto/external/bsd/openssl/dist/test/errtest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/evp_extra_test.c up to 1.13
	crypto/external/bsd/openssl/dist/test/evp_test.c up to 1.10
	crypto/external/bsd/openssl/dist/test/exdatatest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/exptest.c up to 1.6
	crypto/external/bsd/openssl/dist/test/fatalerrtest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/generate_buildtest.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/generate_ssl_tests.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/gmdifftest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/hmactest.c up to 1.6
	crypto/external/bsd/openssl/dist/test/ideatest.c up to 1.4
	crypto/external/bsd/openssl/dist/test/igetest.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/lhash_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/mdc2_internal_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/mdc2test.c up to 1.4
	crypto/external/bsd/openssl/dist/test/memleaktest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/modes_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/ocspapitest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/packettest.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/pbelutest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/pemtest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/pkey_meth_kdf_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/pkey_meth_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/pkits-test.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/poly1305_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/rc2test.c up to 1.4
	crypto/external/bsd/openssl/dist/test/rc4test.c up to 1.4
	crypto/external/bsd/openssl/dist/test/rc5test.c up to 1.4
	crypto/external/bsd/openssl/dist/test/rdrand_sanitytest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recordlentest.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/rsa_complex.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/rsa_mp_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/rsa_test.c up to 1.10
	crypto/external/bsd/openssl/dist/test/run_tests.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/sanitytest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/secmemtest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/servername_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/shlibloadtest.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/siphash_internal_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/sm2_internal_test.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/sm4_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/srptest.c up to 1.4
	crypto/external/bsd/openssl/dist/test/ssl_cert_table_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/ssl_ctx_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/ssl_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/ssl_test_ctx_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/sslapitest.c up to 1.1.1.14
	crypto/external/bsd/openssl/dist/test/sslbuffertest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/sslcorrupttest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/stack_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/sysdefault.cnf up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/sysdefaulttest.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/test.cnf  up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/test_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/testrsa.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/testsid.pem up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/testutil.h up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/testx509.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/threadstest.c up to 1.2
	crypto/external/bsd/openssl/dist/test/time_offset_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/tls13ccstest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/tls13encryptiontest.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/tls13secretstest.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/uitest.c  up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/v3ext.c   up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/v3nametest.c up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/verify_extra_test.c up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/versions.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/wpackettest.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/x509_check_cert_pkey_test.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/x509_dup_cert_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/x509_internal_test.c up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/x509_time_test.c up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/x509aux.c up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/certs/ca-cert-768.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert-768i.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert-ec-explicit.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert-ec-named.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert-md5-any.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert-md5.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-cert2.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-expired.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-name2.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-nonbc.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-nonca.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ca-root2.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca+anyEKU.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca+clientAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca+serverAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca-anyEKU.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca-clientAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cca-serverAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/croot-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cyrillic.msb up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cyrillic.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cyrillic.utf8 up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/cyrillic_crl.utf8 up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/dhp2048.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ee-pathlen.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/embeddedSCTs1.pem up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/certs/embeddedSCTs1.sct up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/certs/embeddedSCTs1_issuer-key.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/embeddedSCTs1_issuer.pem up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/certs/embeddedSCTs3.sct up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/mkcert.sh up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/certs/nca+anyEKU.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ncca1-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ncca2-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/ncca3-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-cert-768.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-cert-md5.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-cert2.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-ed448-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-expired.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/root-name2.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca+anyEKU.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca+clientAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca+serverAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca-anyEKU.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca-clientAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/sca-serverAuth.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/certs/setup.sh up to 1.1.1.12
	crypto/external/bsd/openssl/dist/test/certs/sroot-cert.pem up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/01-test_abort.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/01-test_sanity.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/01-test_symbol_presence.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/01-test_test.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/02-test_errstr.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/02-test_internal_ctype.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/02-test_lhash.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/02-test_ordinals.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/02-test_stack.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/03-test_exdata.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_asn1.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_chacha.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_curve448.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_mdc2.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_modes.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_poly1305.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_siphash.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_sm2.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_sm4.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_ssl_cert_table.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_internal_x509.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/03-test_ui.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/04-test_asn1_decode.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/04-test_asn1_encode.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/04-test_asn1_string_table.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/04-test_bio_callback.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/04-test_bioprint.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/04-test_err.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_bf.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_cast.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_des.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_hmac.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_idea.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_rand.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/05-test_rc2.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_rc4.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/05-test_rc5.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/10-test_bn.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/10-test_exp.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dh.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_dsa.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ec.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecdsa.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_ecparam.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_genec.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_genrsa.t up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/recipes/15-test_mp_rsa.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/15-test_out_option.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_rsa.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/15-test_rsapss.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/20-test_dgst.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/20-test_enc.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/20-test_enc_more.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/20-test_passwd.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/25-test_crl.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/25-test_d2i.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/25-test_pkcs7.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/25-test_req.t up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/recipes/25-test_sid.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/25-test_verify.t up to 1.1.1.10
	crypto/external/bsd/openssl/dist/test/recipes/25-test_x509.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/30-test_afalg.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/30-test_engine.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_extra.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_pbelu.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_pkey_meth.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_pkey_meth_kdf.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/40-test_rehash.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/60-test_x509_check_cert_pkey.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/60-test_x509_dup_cert.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/60-test_x509_store.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/60-test_x509_time.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/70-test_asyncio.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_bad_dtls.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_clienthello.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/70-test_comp.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_key_share.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_packet.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_recordlen.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_renegotiation.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/70-test_servername.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslcbcpadding.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslcertstatus.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslextension.t up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslmessages.t up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslrecords.t up to 1.1.1.5
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslsessiontick.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslsigalgs.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslsignature.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslskewith0p.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslversions.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_sslvertol.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13alerts.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13cookie.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13downgrade.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13hrr.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13kexmodes.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13messages.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tls13psk.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/70-test_tlsextms.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_verify_extra.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/70-test_wpacket.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ca.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cipherbytes.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cipherlist.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ciphername.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cms.t up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/recipes/80-test_cmsapi.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ct.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_dane.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/80-test_dtls.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_dtls_mtu.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_dtlsv1listen.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ocsp.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/80-test_pkcs12.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ssl_new.t up to 1.1.1.7
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ssl_old.t up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/recipes/80-test_ssl_test_ctx.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_sslcorrupt.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_tsa.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/80-test_x509aux.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/90-test_asn1_time.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_async.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_bio_enc.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_bio_memleak.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_constant_time.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_fatalerr.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_gmdiff.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_ige.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_includes.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/90-test_memleak.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_overhead.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_secmem.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_shlibload.t up to 1.1.1.6
	crypto/external/bsd/openssl/dist/test/recipes/90-test_srp.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_sslapi.t up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/90-test_sslbuffers.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_store.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_sysdefault.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_threads.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_time_offset.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_tls13ccs.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_tls13encryption.t up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/recipes/90-test_tls13secrets.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_v3name.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_krb5.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_pyca.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/99-test_ecstress.t up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/tconversion.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/10-test_bn_data/bnexp.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/10-test_bn_data/bnmod.txt up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/recipes/10-test_bn_data/bnmul.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/10-test_bn_data/bnshift.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/10-test_bn_data/bnsum.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evpencod.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/evppkey_ecc.txt up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/90-test_includes_data/conf-includes/includes1.cnf up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_krb5_data/krb5.sh up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/recipes/95-test_external_pyca_data/cryptography.sh up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/smime-certs/ca.cnf up to 1.1.1.3
	crypto/external/bsd/openssl/dist/test/smime-certs/mksmime-certs.sh up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/ssl-tests/protocol_version.pm up to 1.1.1.4
	crypto/external/bsd/openssl/dist/test/ssl-tests/ssltests_base.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/testutil/basic_output.c up to 1.2
	crypto/external/bsd/openssl/dist/test/testutil/cb.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/testutil/driver.c up to 1.5
	crypto/external/bsd/openssl/dist/test/testutil/format_output.c up to 1.7
	crypto/external/bsd/openssl/dist/test/testutil/main.c up to 1.6
	crypto/external/bsd/openssl/dist/test/testutil/output.h up to 1.5
	crypto/external/bsd/openssl/dist/test/testutil/stanza.c up to 1.3
	crypto/external/bsd/openssl/dist/test/testutil/test_cleanup.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/testutil/tests.c up to 1.7
	crypto/external/bsd/openssl/dist/test/testutil/testutil_init.c up to 1.1.1.2
	crypto/external/bsd/openssl/dist/test/testutil/tu_local.h up to 1.1.1.2
	crypto/external/bsd/openssl/dist/tools/c_rehash.in up to 1.1.1.8
	crypto/external/bsd/openssl/dist/util/add-depends.pl up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/build.info up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/check-malloc-errs up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/ck_errf.pl up to 1.1.1.6
	crypto/external/bsd/openssl/dist/util/copy.pl   up to 1.1.1.7
	crypto/external/bsd/openssl/dist/util/dofile.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/util/echo.pl   up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/find-doc-nits up to 1.1.1.7
	crypto/external/bsd/openssl/dist/util/find-unused-errs up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/fix-includes up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/fix-includes.sed up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/indent.pro up to 1.1.1.8
	crypto/external/bsd/openssl/dist/util/libcrypto.num up to 1.1.1.12
	crypto/external/bsd/openssl/dist/util/libssl.num up to 1.1.1.4
	crypto/external/bsd/openssl/dist/util/local_shlib.com.in up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/mkbuildinf.pl up to 1.1.1.5
	crypto/external/bsd/openssl/dist/util/mkdef.pl  up to 1.12
	crypto/external/bsd/openssl/dist/util/mkdir-p.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/util/mkerr.pl  up to 1.1.1.11
	crypto/external/bsd/openssl/dist/util/mkrc.pl   up to 1.1.1.7
	crypto/external/bsd/openssl/dist/util/opensslwrap.sh up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/shlib_wrap.sh.in up to 1.1.1.5
	crypto/external/bsd/openssl/dist/util/su-filter.pl up to 1.1.1.4
	crypto/external/bsd/openssl/dist/util/unlocal_shlib.com.in up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/checkhandshake.pm up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Test.pm up to 1.1.1.7
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/copyright.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Test/Simple.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Test/Utils.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Util/Pod.pm up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/Alert.pm up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/Certificate.pm up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/CertificateRequest.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/CertificateVerify.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/ClientHello.pm up to 1.1.1.4
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/EncryptedExtensions.pm up to 1.1.1.3
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/Message.pm up to 1.1.1.6
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/NewSessionTicket.pm up to 1.1.1.2
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/Proxy.pm up to 1.1.1.6
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/Record.pm up to 1.1.1.4
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/ServerHello.pm up to 1.1.1.4
	crypto/external/bsd/openssl/dist/util/perl/TLSProxy/ServerKeyExchange.pm up to 1.1.1.4
	crypto/external/bsd/openssl/include/progs.h     up to 1.3
	crypto/external/bsd/openssl/include/crypto/bn_conf.h up to 1.3
	crypto/external/bsd/openssl/include/crypto/dso_conf.h up to 1.2
	crypto/external/bsd/openssl/lib/Makefile        up to 1.9
	crypto/external/bsd/openssl/lib/engines/Makefile up to 1.6
	crypto/external/bsd/openssl/lib/engines/engines.mk up to 1.6
	crypto/external/bsd/openssl/lib/engines/dasync/Makefile up to 1.4
	crypto/external/bsd/openssl/lib/engines/ossltest/Makefile up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/Makefile up to 1.33
	crypto/external/bsd/openssl/lib/libcrypto/aes.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/aria.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/asn1.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/async.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/bf.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/bio.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/blake2.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/bn.inc up to 1.10
	crypto/external/bsd/openssl/lib/libcrypto/buffer.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/camellia.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/cast.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/chacha.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/cmac.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/cms.inc up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/comp.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/conf.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/crypto.inc up to 1.12
	crypto/external/bsd/openssl/lib/libcrypto/crypto.map up to 1.12
	crypto/external/bsd/openssl/lib/libcrypto/ct.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/curve448.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/des.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/dh.inc up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/dsa.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/dso.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/ec.inc up to 1.12
	crypto/external/bsd/openssl/lib/libcrypto/engine.inc up to 1.14
	crypto/external/bsd/openssl/lib/libcrypto/err.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/evp.inc up to 1.11
	crypto/external/bsd/openssl/lib/libcrypto/hmac.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/idea.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/kdf.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/lhash.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/libc-sha256.c up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/libc-sha2xx.c up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/libc-sha512.c up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man.inc up to 1.17
	crypto/external/bsd/openssl/lib/libcrypto/md4.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/md5.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/mdc2.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/modes.inc up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/objects.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/ocsp.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/pem.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/pkcs12.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/pkcs7.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/poly1305.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/rand.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/rc2.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/rc4.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/ripemd.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/rsa.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/seed.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/sha.inc up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/shlib_version up to 1.16
	crypto/external/bsd/openssl/lib/libcrypto/siphash.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/sm2.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/sm3.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/sm4.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/srcs.inc up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/srp.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/stack.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/store.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/ts.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/txt_db.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/ui.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/whrlpool.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/x509.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/Makefile up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/aes.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/aesv8-armx.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/arm64cpuid.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/armv8-mont.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/chacha-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/ec.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/ecp_nistz256-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/ghashv8-armx.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/keccak1600-armv8.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/modes.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/poly1305-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/sha1-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/sha512-armv8.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/vpaes-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aes-armv4.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aes.inc up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aesv8-armx.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm64cpuid.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv4-gf2m.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv4-mont.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv4cpuid.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv8-mont.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/bsaes-armv7.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/chacha-armv4.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/chacha-armv8.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/crypto.inc up to 1.15
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ecp_nistz256-armv4.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ecp_nistz256-armv8.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ghash-armv4.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ghashv8-armx.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/keccak1600-armv4.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/keccak1600-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/poly1305-armv4.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/poly1305-armv8.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha1-armv4-large.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha1-armv8.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha256-armv4.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha512-armv4.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha512-armv8.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/vpaes-armv8.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/hppa/crypto.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/aesni-x86.S up to 1.11
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/bf-586.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/bn-586.S up to 1.11
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/cast-586.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/chacha-x86.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/cmll-x86.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/co-586.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/crypt586.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/crypto.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/des-586.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/e_padlock-x86.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/ec.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/ecp_nistz256-x86.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/ghash-x86.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/md5-586.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/poly1305-x86.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/rc4-586.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/rc5-586.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/rmd-586.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/sha1-586.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/sha256-586.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/sha512-586.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/uplink-x86.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/vpaes-x86.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/i386/x86cpuid.S up to 1.18
	crypto/external/bsd/openssl/lib/libcrypto/arch/m68k/crypto.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/mips/aes-mips.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/mips/aes-mips64.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/mips/crypto.inc up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/mips/mips.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/mips/mips64.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/Makefile up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/bn.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/chacha.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/crypto.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/poly1305-ppc.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/sha512-ppc.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/sha512p8-ppc.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/vpaes-ppc.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/bn.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/chacha.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/ec.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/keccak1600-ppc64.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/poly1305-ppc.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/sha512-ppc.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/sha512p8-ppc.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc64/vpaes-ppc.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sh3/crypto.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/aes-sparcv9.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/aesfx-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/aest4-sparcv9.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/bn-sparcv8.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/cmllt4-sparcv9.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/crypto.inc up to 1.15
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/des_enc-sparc.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/dest4-sparcv9.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/ec.inc up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/ecp_nistz256-sparcv9.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/ghash-sparcv9.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/md5-sparcv9.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/poly1305-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/sha1-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/sha512-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/sparct4-mont.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/sparcv9-gf2m.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/sparcv9-mont.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/sparcv9a-mont.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/vis3-mont.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/Makefile up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/aes-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/aesfx-sparcv9.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/aest4-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/cmllt4-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/crypto.inc up to 1.10
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/des_enc-sparc.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/dest4-sparcv9.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/ec.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/ecp_nistz256-sparcv9.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/ghash-sparcv9.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/md5-sparcv9.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/poly1305-sparcv9.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sha.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sha1-sparcv9.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sha512-sparcv9.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sparct4-mont.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sparcv9-gf2m.S up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sparcv9-mont.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/sparcv9a-mont.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/vis3-mont.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/vax/crypto.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/Makefile up to 1.13
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/aes-x86_64.S up to 1.12
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/aesni-gcm-x86_64.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/aesni-mb-x86_64.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/aesni-sha1-x86_64.S up to 1.11
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/aesni-sha256-x86_64.S up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/aesni-x86_64.S up to 1.12
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/bn.inc up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/bsaes-x86_64.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/chacha-x86_64.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/cmll-x86_64.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/crypto.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/e_padlock-x86_64.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/ec.inc up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/ecp_nistz256-x86_64.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/ghash-x86_64.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/keccak1600-x86_64.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/md5-x86_64.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/poly1305-x86_64.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/rc4-md5-x86_64.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/rc4-x86_64.S up to 1.13
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/rsaz-avx2.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/rsaz-x86_64.S up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/sha.inc up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/sha1-mb-x86_64.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/sha1-x86_64.S up to 1.15
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/sha256-mb-x86_64.S up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/sha512-x86_64.S up to 1.11
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/vpaes-x86_64.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/whrlpool.inc up to 1.2
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/wp-x86_64.S up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/x25519-x86_64.S up to 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/x86_64-gf2m.S up to 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/x86_64-mont.S up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/x86_64-mont5.S up to 1.10
	crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/x86_64cpuid.S up to 1.13
	crypto/external/bsd/openssl/lib/libcrypto/man/ADMISSIONS.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_INTEGER_get_int64.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_ITEM_lookup.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_OBJECT_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_TABLE_add.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_length.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_print_ex.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_TIME_set.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_TYPE_get.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_generate_nconf.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ASYNC_WAIT_CTX_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ASYNC_start_job.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BF_encrypt.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_ADDR.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_ADDRINFO.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_connect.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_ctrl.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_base64.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_buffer.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_cipher.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_md.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_null.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_ssl.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_find_type.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_get_data.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_get_ex_new_index.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_meth_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_new_CMS.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_parse_hostserv.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_printf.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_push.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_read.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_accept.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_bio.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_connect.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_fd.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_file.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_mem.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_null.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_socket.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_set_callback.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_should_retry.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_BLINDING_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_CTX_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_CTX_start.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_add.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_add_word.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_bn2bin.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_cmp.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_copy.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_generate_prime.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_inverse.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_mul_montgomery.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_mul_reciprocal.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_num_bytes.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_rand.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_security_bits.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_set_bit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_swap.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_zero.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/BUF_MEM_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_add0_cert.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_add1_recipient_cert.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_add1_signer.3 up to 1.11
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_compress.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_decrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_encrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_final.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get0_RecipientInfos.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get0_SignerInfos.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get0_type.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_sign.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_sign_receipt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_uncompress.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_verify.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_verify_receipt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CONF_modules_free.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CONF_modules_load_file.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/CRYPTO_THREAD_run_once.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/CRYPTO_get_ex_new_index.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/CTLOG_STORE_get0_log_by_id.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/CTLOG_STORE_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/CTLOG_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/CT_POLICY_EVAL_CTX_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DEFINE_STACK_OF.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DES_random_key.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_generate_key.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_generate_parameters.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_get0_pqg.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_get_1024_160.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_meth_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_new_by_nid.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_set_method.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_size.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_SIG_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_do_sign.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_dup_DH.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_generate_key.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_generate_parameters.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_get0_pqg.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_meth_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_set_method.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_sign.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_size.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/DTLS_get_data_mtu.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/DTLS_set_timer_cb.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/DTLSv1_listen.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ECDSA_SIG_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ECPKParameters_print.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_GFp_simple_method.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_GROUP_copy.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_GROUP_new.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_KEY_get_enc_flags.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_KEY_new.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_POINT_add.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_POINT_new.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ENGINE_add.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_GET_LIB.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_clear_error.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_error_string.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_get_error.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_load_crypto_strings.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_load_strings.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_print_errors.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_put_error.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_remove_state.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_set_mark.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_BytesToKey.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER_CTX_get_cipher_data.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER_meth_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_DigestInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_DigestSignInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_DigestVerifyInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_EncodeInit.3 up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_EncryptInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD_meth_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_OpenInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_ASN1_METHOD.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set1_pbe_pass.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_scrypt_N.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_tls1_prf_md.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_asn1_get_count.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_decrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_derive.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_encrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_default_digest_nid.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_keygen.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_meth_get_count.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_meth_new.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_print_private.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_sign.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_verify.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_verify_recover.3 up to 1.17
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SealInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SignInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_VerifyInit.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_bf_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_blake2b512.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_cast5_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_chacha20.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_desx_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_idea_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_md2.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_md4.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_md5.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_mdc2.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_rc2_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_rc4.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_rc5_32_12_16_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ripemd160.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_seed_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sha1.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sha224.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sha3_224.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sm3.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sm4_cbc.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_whirlpool.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/HMAC.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/MD5.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/MDC2_Init.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/Makefile up to 1.10
	crypto/external/bsd/openssl/lib/libcrypto/man/OBJ_nid2obj.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_REQUEST_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_cert_to_id.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_request_add1_nonce.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_resp_find_status.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_response_status.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_sendreq_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_Applink.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_LH_COMPFUNC.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_LH_stats.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_config.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_fork_prepare.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_ia32cap.3 up to 1.24
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_init_crypto.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_init_ssl.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_instrument_bus.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_malloc.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_secure_malloc.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_INFO.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_LOADER.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_SEARCH.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_expect.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_open.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_bytes_read_bio.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read_CMS.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read_bio_PrivateKey.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read_bio_ex.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_create.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_newpass.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_parse.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS5_PBKDF2_HMAC.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_decrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_encrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_sign.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_sign_add_signer.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_verify.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_add.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_bytes.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_cleanup.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_egd.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_load_file.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_set_rand_method.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RC4_set_key.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/RIPEMD160_Init.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA-PSS.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_blinding_on.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_check_key.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_generate_key.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_get0_key.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_meth_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_print.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_private_encrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_public_encrypt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_set_method.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_sign.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_size.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SCT_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SCT_print.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SCT_validate.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SHA256_Init.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_read_CMS.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_read_PKCS7.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_write_CMS.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_write_PKCS7.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CIPHER_get_name.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_COMP_add_compression_method.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_new.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_set1_prefix.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_set_flags.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_set_ssl_ctx.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_cmd.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_cmd_argv.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_add1_chain_cert.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_add_extra_chain_cert.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_add_session.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_config.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_ctrl.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_dane_enable.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_flush_sessions.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_free.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_get0_param.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_get_verify_mode.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_has_client_custom_ext.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_load_verify_locations.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sess_number.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sess_set_cache_size.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sess_set_get_cb.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sessions.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set0_CA_list.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set1_curves.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set1_sigalgs.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set1_verify_cert_store.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_alpn_select_cb.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cert_cb.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cert_store.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cert_verify_callback.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cipher_list.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_client_cert_cb.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_client_hello_cb.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_ct_validation_callback.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_ctlog_list_file.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_default_passwd_cb.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_generate_session_id.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_info_callback.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_keylog_callback.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_max_cert_list.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_min_proto_version.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_mode.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_msg_callback.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_num_tickets.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_options.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_psk_client_callback.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_quiet_shutdown.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_read_ahead.3 up to 1.10
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_record_padding_callback.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_security_level.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_session_cache_mode.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_session_id_context.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_session_ticket_cb.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_split_send_fragment.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_ssl_version.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_stateless_cookie_generate_cb.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_timeout.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_servername_callback.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_status_cb.3 up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_ticket_key_cb.3 up to 1.12
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_use_srtp.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tmp_dh_callback.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_verify.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_use_certificate.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_use_psk_identity_hint.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_use_serverinfo.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_free.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_cipher.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_hostname.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_id_context.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_peer.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get_compress_id.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get_protocol_version.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get_time.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_has_ticket.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_is_resumable.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_print.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_set1_id.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_accept.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_alert_type_string.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_alloc_buffers.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_check_chain.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_clear.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_connect.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_do_handshake.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_export_keying_material.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_extension_supported.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_free.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get0_peer_scts.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_SSL_CTX.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_all_async_fds.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_ciphers.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_client_random.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_current_cipher.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_default_timeout.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_error.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_extms_support.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_fd.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_cert_chain.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_certificate.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_signature_nid.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_tmp_key.3 up to 1.4
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_psk_identity.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_rbio.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_session.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_shared_sigalgs.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_verify_result.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_version.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_in_init.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_key_update.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_library_init.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_load_client_CA_file.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_pending.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_read.3 up to 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_read_early_data.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_rstate_string.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_session_reused.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set1_host.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_bio.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_connect_state.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_fd.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_session.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_shutdown.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_verify_result.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_shutdown.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_state_string.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_want.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_write.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_STRING.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_UTIL_read_pw.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_create_method.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X25519.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/X509V3_get_d2i.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_ALGOR_dup.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_CRL_get0_by_serial.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_EXTENSION_set_object.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_LOOKUP_hash_dir.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_LOOKUP_meth_new.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_get0_der.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_print_ex.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_PUBKEY_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_SIG_get0.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_CTX_get_error.3 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_CTX_new.3 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_add_cert.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_get0_param.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_new.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_ca.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_host.3 up to 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_issued.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_private_key.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_cmp_time.3 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_digest.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_dup.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_notBefore.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_signature.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_uids.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_extension_flags.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_pubkey.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_serialNumber.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_subject_name.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_version.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_new.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_sign.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_verify_cert.3 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/X509v3_get_ext_by_NID.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/bio.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/crypto.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/ct.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_PKCS8PrivateKey_bio.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_PrivateKey.3 up to 1.9
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_SSL_SESSION.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_X509.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/des_modes.7 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/evp.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/i2d_CMS_bio_stream.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/i2d_re_X509_tbs.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/o2i_SCT_LIST.3 up to 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl.1 up to 1.21
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl_CA.pl.1 up to 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl_config.5 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl_tsget.1 up to 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ossl_store-file.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/ossl_store.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/passphrase-encoding.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/ssl.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/x509.7 up to 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/x509v3_config.5 up to 1.5
	crypto/external/bsd/openssl/lib/libcryptotest/Makefile up to 1.5
	crypto/external/bsd/openssl/lib/libdes/shlib_version up to 1.7
	crypto/external/bsd/openssl/lib/libssl/Makefile up to 1.18
	crypto/external/bsd/openssl/lib/libssl/record.inc up to 1.3
	crypto/external/bsd/openssl/lib/libssl/shlib_version up to 1.16
	crypto/external/bsd/openssl/lib/libssl/ssl.inc  up to 1.11
	crypto/external/bsd/openssl/lib/libssl/ssl.map  up to 1.4
	crypto/external/bsd/openssl/lib/libssl/statem.inc up to 1.3
	crypto/Makefile.openssl                         up to 1.19
	crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c 1.29
	crypto/external/bsd/libsaslc/lib/Makefile	1.10
	crypto/external/bsd/netpgp/lib/netpgp/Makefile	1.5
	crypto/external/bsd/openssh/bin/ssh-agent/Makefile 1.6
	crypto/external/bsd/openssh/bin/ssh-keygen/Makefile 1.9
	crypto/external/bsd/openssh/bin/ssh-keyscan/Makefile 1.6
	crypto/external/bsd/openssh/bin/ssh-pkcs11-helper/Makefile 1.4
	crypto/external/bsd/openssh/bin/sshd/Makefile	1.26
	crypto/external/bsd/openssh/lib/Makefile	1.35
	crypto/external/bsd/openssh/libexec/ssh-sk-helper/Makefile 1.4
	distrib/sets/deps				1.23
	distrib/sets/lists/base/ad.aarch64		1.38-1.43 (patch)
	distrib/sets/lists/base/ad.mips			1.84,1.87,1.88,1.90 (patch)
	distrib/sets/lists/base/ad.powerpc		1.41,1.42,1.45-1.47 (patch)
	distrib/sets/lists/base/ad.riscv		1.24,1.25,1.28,1.29,1.30 (patch)
	distrib/sets/lists/base/md.amd64		1.288,1.291-1.293,1.295 (patch)
	distrib/sets/lists/base/md.i386			1.158 (patch)
	distrib/sets/lists/base/md.riskv64		delete
	distrib/sets/lists/base/md.sparc64		1.258,1.261,1.262 (patch)
	distrib/sets/lists/base/mi			1.1316-1.1319,1.1322-1.1324 (patch)
	distrib/sets/lists/base/shl.mi			1.948 (patch)
	distrib/sets/lists/comp/mi			1.2427,1.2428,1.2431,1.2432 (patch)
	distrib/sets/lists/debug/mi			1.398,1.404,1.405 (patch)
	distrib/sets/lists/debug/shl.mi			1.305 (patch)
	distrib/sets/lists/man/mi			1.1760,1.1761 (patch)
	distrib/sets/lists/tests/mi			1.1261,1.1262,1.1270 (patch)
	etc/mtree/NetBSD.compat.mips64			1.2 (patch)
	etc/mtree/NetBSD.compat.powerpc64		1.2 (patch)
	etc/mtree/NetBSD.compat.riscv64			1.2 (patch)
	etc/mtree/NetBSD.dist.aarch64			1.10,1.11 (patch)
	etc/mtree/NetBSD.dist.base			1.248 (patch)
	etc/mtree/NetBSD.dist.compat.in			1.3,1.4 (patch)
	etc/mtree/NetBSD.dist.sparc64			1.15,1.16 (patch)
	etc/mtree/NetBSD.dist.x86_64			1.17-1.19 (patch)
	external/bsd/libarchive/lib/libarchive/Makefile	1.15
	external/bsd/libfido2/bin/fido2-assert/Makefile	1.3
	external/bsd/libfido2/bin/fido2-cred/Makefile	1.3
	external/bsd/libfido2/bin/fido2-token/Makefile	1.3
	external/bsd/libfido2/dist/src/assert.c		1.2
	external/bsd/libfido2/dist/src/cred.c		1.2
	external/bsd/libfido2/lib/Makefile		1.9
	external/bsd/ntp/bin/ntp-keygen/Makefile	1.8
	external/bsd/ntp/bin/ntpd/Makefile		1.29
	external/bsd/ntp/bin/sntp/Makefile		1.10
	external/bsd/ntp/dist/ntpd/ntp_crypto.c		1.17
	external/bsd/ntp/dist/util/ntp-keygen.c		1.15
	external/bsd/ntp/lib/libntp/Makefile		1.26
	external/bsd/openldap/lib/libldap/Makefile.libldap 1.14
	external/bsd/pam-u2f/bin/pamu2fcfg/Makefile	1.5
	external/bsd/pam-u2f/lib/security/pam-u2f/Makefile 1.6
	external/bsd/tcpdump/bin/Makefile		1.22
	external/bsd/unbound/lib/libunbound/Makefile	1.8
	external/bsd/wpa/bin/hostapd/Makefile		1.16
	external/bsd/wpa/bin/wpa_passphrase/Makefile	1.6
	external/bsd/wpa/bin/wpa_supplicant/Makefile	1.11
	external/mpl/dhcp/dist/common/dispatch.c	1.4,1.5
	games/factor/Makefile				1.15
	lib/Makefile					1.295
	libexec/httpd/Makefile				1.32
	libexec/httpd/libbozohttpd/Makefile		1.4
	share/mk/bsd.lib.mk				1.391
	share/mk/bsd.own.mk				1.1316
	share/mk/bsd.prog.mk				1.342,1.343
	tests/crypto/libcrypto/Makefile			1.15
	tests/crypto/libcrypto/Makefile.inc		1.11
	tests/crypto/libcrypto/conf/Makefile		1.2
	tests/crypto/libcrypto/conf/d_conf-1x.out	1.1
	tests/crypto/libcrypto/conf/d_conf-3x.out	1.1
	tests/crypto/libcrypto/conf/d_conf.out		delete
	tests/crypto/libcrypto/dh/Makefile		1.2
	tests/crypto/libcrypto/evp/Makefile		1.3
	tests/crypto/libcrypto/t_hashes.sh		1.5
	tests/crypto/libcrypto/t_libcrypto.sh		1.9
	tests/crypto/libcrypto/t_pubkey.sh		1.7
	tests/crypto/libcrypto/threads/Makefile		1.6
	usr.bin/moduli/qsafe/Makefile			1.2
	usr.sbin/plainrsa-gen/Makefile			1.2
	usr.sbin/racoon/Makefile			1.41,1.42
	usr.sbin/syslogd/Makefile			1.32
	crypto/external/bsd/openssl.old/		(removed)

Import of OpenSSL 3.0.
Import of bind 9.16.42.
Import of heimdal 7.8.0.
@
text
@a0 2463
=pod

=head1 NAME

migration_guide - OpenSSL migration guide

=head1 SYNOPSIS

See the individual manual pages for details.

=head1 DESCRIPTION

This guide details the changes required to migrate to new versions of OpenSSL.
Currently this covers OpenSSL 3.0. For earlier versions refer to
L<https://github.com/openssl/openssl/blob/master/CHANGES.md>.
For an overview of some of the key concepts introduced in OpenSSL 3.0 see
L<crypto(7)>.

=head1 OPENSSL 3.0

=head2 Main Changes from OpenSSL 1.1.1

=head3 Major Release

OpenSSL 3.0 is a major release and consequently any application that currently
uses an older version of OpenSSL will at the very least need to be recompiled in
order to work with the new version. It is the intention that the large majority
of applications will work unchanged with OpenSSL 3.0 if those applications
previously worked with OpenSSL 1.1.1. However this is not guaranteed and some
changes may be required in some cases. Changes may also be required if
applications need to take advantage of some of the new features available in
OpenSSL 3.0 such as the availability of the FIPS module.

=head3 License Change

In previous versions, OpenSSL was licensed under the L<dual OpenSSL and SSLeay
licenses|https://www.openssl.org/source/license-openssl-ssleay.txt>
(both licenses apply). From OpenSSL 3.0 this is replaced by the
L<Apache License v2|https://www.openssl.org/source/apache-license-2.0.txt>.

=head3 Providers and FIPS support

One of the key changes from OpenSSL 1.1.1 is the introduction of the Provider
concept. Providers collect together and make available algorithm implementations.
With OpenSSL 3.0 it is possible to specify, either programmatically or via a
config file, which providers you want to use for any given application.
OpenSSL 3.0 comes with 5 different providers as standard. Over time third
parties may distribute additional providers that can be plugged into OpenSSL.
All algorithm implementations available via providers are accessed through the
"high level" APIs (for example those functions prefixed with C<EVP>). They cannot
be accessed using the L</Low Level APIs>.

One of the standard providers available is the FIPS provider. This makes
available FIPS validated cryptographic algorithms.
The FIPS provider is disabled by default and needs to be enabled explicitly
at configuration time using the C<enable-fips> option. If it is enabled,
the FIPS provider gets built and installed in addition to the other standard
providers. No separate installation procedure is necessary.
There is however a dedicated C<install_fips> make target, which serves the
special purpose of installing only the FIPS provider into an existing
OpenSSL installation.

Not all algorithms may be available for the application at a particular moment.
If the application code uses any digest or cipher algorithm via the EVP interface,
the application should verify the result of the L<EVP_EncryptInit(3)>,
L<EVP_EncryptInit_ex(3)>, and L<EVP_DigestInit(3)> functions. In case when
the requested algorithm is not available, these functions will fail.

See also L</Legacy Algorithms> for information on the legacy provider.

See also L</Completing the installation of the FIPS Module> and
L</Using the FIPS Module in applications>.

=head3 Low Level APIs

OpenSSL has historically provided two sets of APIs for invoking cryptographic
algorithms: the "high level" APIs (such as the C<EVP> APIs) and the "low level"
APIs. The high level APIs are typically designed to work across all algorithm
types. The "low level" APIs are targeted at a specific algorithm implementation.
For example, the EVP APIs provide the functions L<EVP_EncryptInit_ex(3)>,
L<EVP_EncryptUpdate(3)> and L<EVP_EncryptFinal(3)> to perform symmetric
encryption. Those functions can be used with the algorithms AES, CHACHA, 3DES etc.
On the other hand, to do AES encryption using the low level APIs you would have
to call AES specific functions such as L<AES_set_encrypt_key(3)>,
L<AES_encrypt(3)>, and so on. The functions for 3DES are different.
Use of the low level APIs has been informally discouraged by the OpenSSL
development team for a long time. However in OpenSSL 3.0 this is made more
formal. All such low level APIs have been deprecated. You may still use them in
your applications, but you may start to see deprecation warnings during
compilation (dependent on compiler support for this). Deprecated APIs may be
removed from future versions of OpenSSL so you are strongly encouraged to update
your code to use the high level APIs instead.

This is described in more detail in L</Deprecation of Low Level Functions>

=head3 Legacy Algorithms

Some cryptographic algorithms such as B<MD2> and B<DES> that were available via
the EVP APIs are now considered legacy and their use is strongly discouraged.
These legacy EVP algorithms are still available in OpenSSL 3.0 but not by
default. If you want to use them then you must load the legacy provider.
This can be as simple as a config file change, or can be done programmatically.
See L<OSSL_PROVIDER-legacy(7)> for a complete list of algorithms.
Applications using the EVP APIs to access these algorithms should instead use
more modern algorithms. If that is not possible then these applications
should ensure that the legacy provider has been loaded. This can be achieved
either programmatically or via configuration. See L<crypto(7)> man page for
more information about providers.

=head3 Engines and "METHOD" APIs

The refactoring to support Providers conflicts internally with the APIs used to
support engines, including the ENGINE API and any function that creates or
modifies custom "METHODS" (for example L<EVP_MD_meth_new(3)>,
L<EVP_CIPHER_meth_new(3)>, L<EVP_PKEY_meth_new(3)>, L<RSA_meth_new(3)>,
L<EC_KEY_METHOD_new(3)>, etc.). These functions are being deprecated in
OpenSSL 3.0, and users of these APIs should know that their use can likely
bypass provider selection and configuration, with unintended consequences.
This is particularly relevant for applications written to use the OpenSSL 3.0
FIPS module, as detailed below. Authors and maintainers of external engines are
strongly encouraged to refactor their code transforming engines into providers
using the new Provider API and avoiding deprecated methods.

=head3 Support of legacy engines

If openssl is not built without engine support or deprecated API support, engines
will still work. However, their applicability will be limited.

New algorithms provided via engines will still work.

Engine-backed keys can be loaded via custom B<OSSL_STORE> implementation.
In this case the B<EVP_PKEY> objects created via L<ENGINE_load_private_key(3)>
will be concidered legacy and will continue to work.

To ensure the future compatibility, the engines should be turned to providers.
To prefer the provider-based hardware offload, you can specify the default
properties to prefer your provider.

=head3 Versioning Scheme

The OpenSSL versioning scheme has changed with the OpenSSL 3.0 release. The new
versioning scheme has this format:

MAJOR.MINOR.PATCH

For OpenSSL 1.1.1 and below, different patch levels were indicated by a letter
at the end of the release version number. This will no longer be used and
instead the patch level is indicated by the final number in the version. A
change in the second (MINOR) number indicates that new features may have been
added. OpenSSL versions with the same major number are API and ABI compatible.
If the major number changes then API and ABI compatibility is not guaranteed.

For more information, see L<OpenSSL_version(3)>.

=head3 Other major new features

=head4 Certificate Management Protocol (CMP, RFC 4210)

This also covers CRMF (RFC 4211) and HTTP transfer (RFC 6712)
See L<openssl-cmp(1)> and L<OSSL_CMP_exec_certreq(3)> as starting points.

=head4 HTTP(S) client

A proper HTTP(S) client that supports GET and POST, redirection, plain and
ASN.1-encoded contents, proxies, and timeouts.

=head4 Key Derivation Function API (EVP_KDF)

This simplifies the process of adding new KDF and PRF implementations.

Previously KDF algorithms had been shoe-horned into using the EVP_PKEY object
which was not a logical mapping.
Existing applications that use KDF algorithms using EVP_PKEY
(scrypt, TLS1 PRF and HKDF) may be slower as they use an EVP_KDF bridge
internally.
All new applications should use the new L<EVP_KDF(3)> interface.
See also L<OSSL_PROVIDER-default(7)/Key Derivation Function (KDF)> and
L<OSSL_PROVIDER-FIPS(7)/Key Derivation Function (KDF)>.

=head4 Message Authentication Code API (EVP_MAC)

This simplifies the process of adding MAC implementations.

This includes a generic EVP_PKEY to EVP_MAC bridge, to facilitate the continued
use of MACs through raw private keys in functionality such as
L<EVP_DigestSign(3)> and L<EVP_DigestVerify(3)>.

All new applications should use the new L<EVP_MAC(3)> interface.
See also L<OSSL_PROVIDER-default(7)/Message Authentication Code (MAC)>
and L<OSSL_PROVIDER-FIPS(7)/Message Authentication Code (MAC)>.

=head4 Algorithm Fetching

Using calls to convenience functions such as EVP_sha256() and EVP_aes_256_gcm() may
incur a performance penalty when using providers.
Retrieving algorithms from providers involves searching for an algorithm by name.
This is much slower than directly accessing a method table.
It is recommended to prefetch algorithms if an algorithm is used many times.
See L<crypto(7)/Performance>, L<crypto(7)/Explicit fetching> and L<crypto(7)/Implicit fetching>.

=head4 Support for Linux Kernel TLS

In order to use KTLS, support for it must be compiled in using the
C<enable-ktls> configuration option. It must also be enabled at run time using
the B<SSL_OP_ENABLE_KTLS> option.

=head4 New Algorithms

=over 4

=item *

KDF algorithms "SINGLE STEP" and "SSH"

See L<EVP_KDF-SS(7)> and L<EVP_KDF-SSHKDF(7)>

=item *

MAC Algorithms "GMAC" and "KMAC"

See L<EVP_MAC-GMAC(7)> and L<EVP_MAC-KMAC(7)>.

=item *

KEM Algorithm "RSASVE"

See L<EVP_KEM-RSA(7)>.

=item *

Cipher Algorithm "AES-SIV"

See L<EVP_EncryptInit(3)/SIV Mode>.

=item *

AES Key Wrap inverse ciphers supported by EVP layer.

The inverse ciphers use AES decryption for wrapping, and AES encryption for
unwrapping. The algorithms are: "AES-128-WRAP-INV", "AES-192-WRAP-INV",
"AES-256-WRAP-INV", "AES-128-WRAP-PAD-INV", "AES-192-WRAP-PAD-INV" and
"AES-256-WRAP-PAD-INV".

=item *

CTS ciphers added to EVP layer.

The algorithms are "AES-128-CBC-CTS", "AES-192-CBC-CTS", "AES-256-CBC-CTS",
"CAMELLIA-128-CBC-CTS", "CAMELLIA-192-CBC-CTS" and "CAMELLIA-256-CBC-CTS".
CS1, CS2 and CS3 variants are supported.

=back

=head4 CMS and PKCS#7 updates

=over 4

=item *

Added CAdES-BES signature verification support.

=item *

Added CAdES-BES signature scheme and attributes support (RFC 5126) to CMS API.

=item *

Added AuthEnvelopedData content type structure (RFC 5083) using AES_GCM

This uses the AES-GCM parameter (RFC 5084) for the Cryptographic Message Syntax.
Its purpose is to support encryption and decryption of a digital envelope that
is both authenticated and encrypted using AES GCM mode.

=item *

L<PKCS7_get_octet_string(3)> and L<PKCS7_type_is_other(3)> were made public.

=back

=head4 PKCS#12 API updates

The default algorithms for pkcs12 creation with the PKCS12_create() function
were changed to more modern PBKDF2 and AES based algorithms. The default
MAC iteration count was changed to PKCS12_DEFAULT_ITER to make it equal
with the password-based encryption iteration count. The default digest
algorithm for the MAC computation was changed to SHA-256. The pkcs12
application now supports -legacy option that restores the previous
default algorithms to support interoperability with legacy systems.

Added enhanced PKCS#12 APIs which accept a library context B<OSSL_LIB_CTX>
and (where relevant) a property query. Other APIs which handle PKCS#7 and
PKCS#8 objects have also been enhanced where required. This includes:

L<PKCS12_add_key_ex(3)>, L<PKCS12_add_safe_ex(3)>, L<PKCS12_add_safes_ex(3)>,
L<PKCS12_create_ex(3)>, L<PKCS12_decrypt_skey_ex(3)>, L<PKCS12_init_ex(3)>,
L<PKCS12_item_decrypt_d2i_ex(3)>, L<PKCS12_item_i2d_encrypt_ex(3)>,
L<PKCS12_key_gen_asc_ex(3)>, L<PKCS12_key_gen_uni_ex(3)>, L<PKCS12_key_gen_utf8_ex(3)>,
L<PKCS12_pack_p7encdata_ex(3)>, L<PKCS12_pbe_crypt_ex(3)>, L<PKCS12_PBE_keyivgen_ex(3)>,
L<PKCS12_SAFEBAG_create_pkcs8_encrypt_ex(3)>, L<PKCS5_pbe2_set_iv_ex(3)>,
L<PKCS5_pbe_set0_algor_ex(3)>, L<PKCS5_pbe_set_ex(3)>, L<PKCS5_pbkdf2_set_ex(3)>,
L<PKCS5_v2_PBE_keyivgen_ex(3)>, L<PKCS5_v2_scrypt_keyivgen_ex(3)>,
L<PKCS8_decrypt_ex(3)>, L<PKCS8_encrypt_ex(3)>, L<PKCS8_set0_pbe_ex(3)>.

As part of this change the EVP_PBE_xxx APIs can also accept a library
context and property query and will call an extended version of the key/IV
derivation function which supports these parameters. This includes
L<EVP_PBE_CipherInit_ex(3)>, L<EVP_PBE_find_ex(3)> and L<EVP_PBE_scrypt_ex(3)>.

=head4 Windows thread synchronization changes

Windows thread synchronization uses read/write primitives (SRWLock) when
supported by the OS, otherwise CriticalSection continues to be used.

=head4 Trace API

A new generic trace API has been added which provides support for enabling
instrumentation through trace output. This feature is mainly intended as an aid
for developers and is disabled by default. To utilize it, OpenSSL needs to be
configured with the C<enable-trace> option.

If the tracing API is enabled, the application can activate trace output by
registering BIOs as trace channels for a number of tracing and debugging
categories. See L<OSSL_trace_enabled(3)>.

=head4 Key validation updates

L<EVP_PKEY_public_check(3)> and L<EVP_PKEY_param_check(3)> now work for
more key types. This includes RSA, DSA, ED25519, X25519, ED448 and X448.
Previously (in 1.1.1) they would return -2. For key types that do not have
parameters then L<EVP_PKEY_param_check(3)> will always return 1.

=head3 Other notable deprecations and changes

=head4 The function code part of an OpenSSL error code is no longer relevant

This code is now always set to zero. Related functions are deprecated.

=head4 STACK and HASH macros have been cleaned up

The type-safe wrappers are declared everywhere and implemented once.
See L<DEFINE_STACK_OF(3)> and L<DECLARE_LHASH_OF(3)>.

=head4 The RAND_DRBG subsystem has been removed

The new L<EVP_RAND(3)> is a partial replacement: the DRBG callback framework is
absent. The RAND_DRBG API did not fit well into the new provider concept as
implemented by EVP_RAND and EVP_RAND_CTX.

=head4 Removed FIPS_mode() and FIPS_mode_set()

These functions are legacy APIs that are not applicable to the new provider
model. Applications should instead use
L<EVP_default_properties_is_fips_enabled(3)> and
L<EVP_default_properties_enable_fips(3)>.

=head4 Key generation is slower

The Miller-Rabin test now uses 64 rounds, which is used for all prime generation,
including RSA key generation. This affects the time for larger keys sizes.

The default key generation method for the regular 2-prime RSA keys was changed
to the FIPS186-4 B.3.6 method (Generation of Probable Primes with Conditions
Based on Auxiliary Probable Primes). This method is slower than the original
method.

=head4 Change PBKDF2 to conform to SP800-132 instead of the older PKCS5 RFC2898

This checks that the salt length is at least 128 bits, the derived key length is
at least 112 bits, and that the iteration count is at least 1000.
For backwards compatibility these checks are disabled by default in the
default provider, but are enabled by default in the FIPS provider.

To enable or disable the checks see B<OSSL_KDF_PARAM_PKCS5> in
L<EVP_KDF-PBKDF2(7)>. The parameter can be set using L<EVP_KDF_derive(3)>.

=head4 Enforce a minimum DH modulus size of 512 bits

Smaller sizes now result in an error.

=head4 SM2 key changes

EC EVP_PKEYs with the SM2 curve have been reworked to automatically become
EVP_PKEY_SM2 rather than EVP_PKEY_EC.

Unlike in previous OpenSSL versions, this means that applications cannot
call C<EVP_PKEY_set_alias_type(pkey, EVP_PKEY_SM2)> to get SM2 computations.

Parameter and key generation is also reworked to make it possible
to generate EVP_PKEY_SM2 parameters and keys. Applications must now generate
SM2 keys directly and must not create an EVP_PKEY_EC key first. It is no longer
possible to import an SM2 key with domain parameters other than the SM2 elliptic
curve ones.

Validation of SM2 keys has been separated from the validation of regular EC
keys, allowing to improve the SM2 validation process to reject loaded private
keys that are not conforming to the SM2 ISO standard.
In particular, a private scalar I<k> outside the range I<< 1 <= k < n-1 >> is
now correctly rejected.

=head4 EVP_PKEY_set_alias_type() method has been removed

This function made a B<EVP_PKEY> object mutable after it had been set up. In
OpenSSL 3.0 it was decided that a provided key should not be able to change its
type, so this function has been removed.

=head4 Functions that return an internal key should be treated as read only

Functions such as L<EVP_PKEY_get0_RSA(3)> behave slightly differently in
OpenSSL 3.0. Previously they returned a pointer to the low-level key used
internally by libcrypto. From OpenSSL 3.0 this key may now be held in a
provider. Calling these functions will only return a handle on the internal key
where the EVP_PKEY was constructed using this key in the first place, for
example using a function or macro such as L<EVP_PKEY_assign_RSA(3)>,
L<EVP_PKEY_set1_RSA(3)>, etc.
Where the EVP_PKEY holds a provider managed key, then these functions now return
a cached copy of the key. Changes to the internal provider key that take place
after the first time the cached key is accessed will not be reflected back in
the cached copy. Similarly any changes made to the cached copy by application
code will not be reflected back in the internal provider key.

For the above reasons the keys returned from these functions should typically be
treated as read-only. To emphasise this the value returned from
L<EVP_PKEY_get0_RSA(3)>, L<EVP_PKEY_get0_DSA(3)>, L<EVP_PKEY_get0_EC_KEY(3)> and
L<EVP_PKEY_get0_DH(3)> have been made const. This may break some existing code.
Applications broken by this change should be modified. The preferred solution is
to refactor the code to avoid the use of these deprecated functions. Failing
this the code should be modified to use a const pointer instead.
The L<EVP_PKEY_get1_RSA(3)>, L<EVP_PKEY_get1_DSA(3)>, L<EVP_PKEY_get1_EC_KEY(3)>
and L<EVP_PKEY_get1_DH(3)> functions continue to return a non-const pointer to
enable them to be "freed". However they should also be treated as read-only.

=head4 The public key check has moved from EVP_PKEY_derive() to EVP_PKEY_derive_set_peer()

This may mean result in an error in L<EVP_PKEY_derive_set_peer(3)> rather than
during L<EVP_PKEY_derive(3)>.
To disable this check use EVP_PKEY_derive_set_peer_ex(dh, peer, 0).

=head4 The print format has cosmetic changes for some functions

The output from numerous "printing" functions such as L<X509_signature_print(3)>,
L<X509_print_ex(3)>, L<X509_CRL_print_ex(3)>, and other similar functions has been
amended such that there may be cosmetic differences between the output
observed in 1.1.1 and 3.0. This also applies to the B<-text> output from the
B<openssl x509> and B<openssl crl> applications.

=head4 Interactive mode from the B<openssl> program has been removed

From now on, running it without arguments is equivalent to B<openssl help>.

=head4 The error return values from some control calls (ctrl) have changed

One significant change is that controls which used to return -2 for
invalid inputs, now return -1 indicating a generic error condition instead.

=head4 DH and DHX key types have different settable parameters

Previously (in 1.1.1) these conflicting parameters were allowed, but will now
result in errors. See L<EVP_PKEY-DH(7)> for further details. This affects the
behaviour of L<openssl-genpkey(1)> for DH parameter generation.

=head4 EVP_CIPHER_CTX_set_flags() ordering change

If using a cipher from a provider the B<EVP_CIPH_FLAG_LENGTH_BITS> flag can only
be set B<after> the cipher has been assigned to the cipher context.
See L<EVP_EncryptInit(3)/FLAGS> for more information.

=head4 Validation of operation context parameters

Due to move of the implementation of cryptographic operations to the
providers, validation of various operation parameters can be postponed until
the actual operation is executed where previously it happened immediately
when an operation parameter was set.

For example when setting an unsupported curve with
EVP_PKEY_CTX_set_ec_paramgen_curve_nid() this function call will not fail
but later keygen operations with the EVP_PKEY_CTX will fail.

=head4 Removal of function code from the error codes

The function code part of the error code is now always set to 0. For that
reason the ERR_GET_FUNC() macro was removed. Applications must resolve
the error codes only using the library number and the reason code.

=head4 ChaCha20-Poly1305 cipher does not allow a truncated IV length to be used

In OpenSSL 3.0 setting the IV length to any value other than 12 will result in an
error.
Prior to OpenSSL 3.0 the ivlen could be smaller that the required 12 byte length,
using EVP_CIPHER_CTX_ctrl(ctx, EVP_CRTL_AEAD_SET_IVLEN, ivlen, NULL). This resulted
in an IV that had leading zero padding.

=head2 Installation and Compilation

Please refer to the INSTALL.md file in the top of the distribution for
instructions on how to build and install OpenSSL 3.0. Please also refer to the
various platform specific NOTES files for your specific platform.

=head2 Upgrading from OpenSSL 1.1.1

Upgrading to OpenSSL 3.0 from OpenSSL 1.1.1 should be relatively straight
forward in most cases. The most likely area where you will encounter problems
is if you have used low level APIs in your code (as discussed above). In that
case you are likely to start seeing deprecation warnings when compiling your
application. If this happens you have 3 options:

=over 4

=item 1.

Ignore the warnings. They are just warnings. The deprecated functions are still present and you may still use them. However be aware that they may be removed from a future version of OpenSSL.

=item 2.

Suppress the warnings. Refer to your compiler documentation on how to do this.

=item 3.

Remove your usage of the low level APIs. In this case you will need to rewrite your code to use the high level APIs instead

=back

=head3 Error code changes

As OpenSSL 3.0 provides a brand new Encoder/Decoder mechanism for working with
widely used file formats, application code that checks for particular error
reason codes on key loading failures might need an update.

Password-protected keys may deserve special attention. If only some errors
are treated as an indicator that the user should be asked about the password again,
it's worth testing these scenarios and processing the newly relevant codes.

There may be more cases to treat specially, depending on the calling application code.

=head2 Upgrading from OpenSSL 1.0.2

Upgrading to OpenSSL 3.0 from OpenSSL 1.0.2 is likely to be significantly more
difficult. In addition to the issues discussed above in the section about
L</Upgrading from OpenSSL 1.1.1>, the main things to be aware of are:

=over 4

=item 1.

The build and installation procedure has changed significantly.

Check the file INSTALL.md in the top of the installation for instructions on how
to build and install OpenSSL for your platform. Also read the various NOTES
files in the same directory, as applicable for your platform.

=item 2.

Many structures have been made opaque in OpenSSL 3.0.

The structure definitions have been removed from the public header files and
moved to internal header files. In practice this means that you can no longer
stack allocate some structures. Instead they must be heap allocated through some
function call (typically those function names have a C<_new> suffix to them).
Additionally you must use "setter" or "getter" functions to access the fields
within those structures.

For example code that previously looked like this:

 EVP_MD_CTX md_ctx;

 /* This line will now generate compiler errors */
 EVP_MD_CTX_init(&md_ctx);

The code needs to be amended to look like this:

 EVP_MD_CTX *md_ctx;

 md_ctx = EVP_MD_CTX_new();
 ...
 ...
 EVP_MD_CTX_free(md_ctx);

=item 3.

Support for TLSv1.3 has been added.

This has a number of implications for SSL/TLS applications. See the
L<TLS1.3 page|https://wiki.openssl.org/index.php/TLS1.3> for further details.

=back

More details about the breaking changes between OpenSSL versions 1.0.2 and 1.1.0
can be found on the
L<OpenSSL 1.1.0 Changes page|https://wiki.openssl.org/index.php/OpenSSL_1.1.0_Changes>.

=head3 Upgrading from the OpenSSL 2.0 FIPS Object Module

The OpenSSL 2.0 FIPS Object Module was a separate download that had to be built
separately and then integrated into your main OpenSSL 1.0.2 build.
In OpenSSL 3.0 the FIPS support is fully integrated into the mainline version of
OpenSSL and is no longer a separate download. For further information see
L</Completing the installation of the FIPS Module>.

The function calls FIPS_mode() and FIPS_mode_set() have been removed
from OpenSSL 3.0. You should rewrite your application to not use them.
See L<fips_module(7)> and L<OSSL_PROVIDER-FIPS(7)> for details.

=head2 Completing the installation of the FIPS Module

The FIPS Module will be built and installed automatically if FIPS support has
been configured. The current documentation can be found in the
L<README-FIPS|https://github.com/openssl/openssl/blob/master/README-FIPS.md> file.

=head2 Programming

Applications written to work with OpenSSL 1.1.1 will mostly just work with
OpenSSL 3.0. However changes will be required if you want to take advantage of
some of the new features that OpenSSL 3.0 makes available. In order to do that
you need to understand some new concepts introduced in OpenSSL 3.0.
Read L<crypto(7)/Library contexts> for further information.

=head3 Library Context

A library context allows different components of a complex application to each
use a different library context and have different providers loaded with
different configuration settings.
See L<crypto(7)/Library contexts> for further info.

If the user creates an B<OSSL_LIB_CTX> via L<OSSL_LIB_CTX_new(3)> then many
functions may need to be changed to pass additional parameters to handle the
library context.

=head4 Using a Library Context - Old functions that should be changed

If a library context is needed then all EVP_* digest functions that return a
B<const EVP_MD *> such as EVP_sha256() should be replaced with a call to
L<EVP_MD_fetch(3)>. See L<crypto(7)/ALGORITHM FETCHING>.

If a library context is needed then all EVP_* cipher functions that return a
B<const EVP_CIPHER *> such as EVP_aes_128_cbc() should be replaced vith a call to
L<EVP_CIPHER_fetch(3)>. See L<crypto(7)/ALGORITHM FETCHING>.

Some functions can be passed an object that has already been set up with a library
context such as L<d2i_X509(3)>, L<d2i_X509_CRL(3)>, L<d2i_X509_REQ(3)> and
L<d2i_X509_PUBKEY(3)>. If NULL is passed instead then the created object will be
set up with the default library context. Use L<X509_new_ex(3)>,
L<X509_CRL_new_ex(3)>, L<X509_REQ_new_ex(3)> and L<X509_PUBKEY_new_ex(3)> if a
library context is required.

All functions listed below with a I<NAME> have a replacment function I<NAME_ex>
that takes B<OSSL_LIB_CTX> as an additional argument. Functions that have other
mappings are listed along with the respective name.

=over 4

=item *

L<ASN1_item_new(3)>, L<ASN1_item_d2i(3)>, L<ASN1_item_d2i_fp(3)>,
L<ASN1_item_d2i_bio(3)>, L<ASN1_item_sign(3)> and L<ASN1_item_verify(3)>

=item *

L<BIO_new(3)>

=item *

b2i_RSA_PVK_bio() and i2b_PVK_bio()

=item *

L<BN_CTX_new(3)> and L<BN_CTX_secure_new(3)>

=item *

L<CMS_AuthEnvelopedData_create(3)>, L<CMS_ContentInfo_new(3)>, L<CMS_data_create(3)>,
L<CMS_digest_create(3)>, L<CMS_EncryptedData_encrypt(3)>, L<CMS_encrypt(3)>,
L<CMS_EnvelopedData_create(3)>, L<CMS_ReceiptRequest_create0(3)> and L<CMS_sign(3)>

=item *

L<CONF_modules_load_file(3)>

=item *

L<CTLOG_new(3)>, L<CTLOG_new_from_base64(3)> and L<CTLOG_STORE_new(3)>

=item *

L<CT_POLICY_EVAL_CTX_new(3)>

=item *

L<d2i_AutoPrivateKey(3)>, L<d2i_PrivateKey(3)> and L<d2i_PUBKEY(3)>

=item *

L<d2i_PrivateKey_bio(3)> and L<d2i_PrivateKey_fp(3)>

Use L<d2i_PrivateKey_ex_bio(3)> and L<d2i_PrivateKey_ex_fp(3)>

=item *

L<EC_GROUP_new(3)>

Use L<EC_GROUP_new_by_curve_name_ex(3)> or L<EC_GROUP_new_from_params(3)>.

=item *

L<EVP_DigestSignInit(3)> and L<EVP_DigestVerifyInit(3)>

=item *

L<EVP_PBE_CipherInit(3)>, L<EVP_PBE_find(3)> and L<EVP_PBE_scrypt(3)>

=item *

L<PKCS5_PBE_keyivgen(3)>

=item *

L<EVP_PKCS82PKEY(3)>

=item *

L<EVP_PKEY_CTX_new_id(3)>

Use L<EVP_PKEY_CTX_new_from_name(3)>

=item *

L<EVP_PKEY_derive_set_peer(3)>, L<EVP_PKEY_new_raw_private_key(3)>
and L<EVP_PKEY_new_raw_public_key(3)>

=item *

L<EVP_SignFinal(3)> and L<EVP_VerifyFinal(3)>

=item *

L<NCONF_new(3)>

=item *

L<OCSP_RESPID_match(3)> and L<OCSP_RESPID_set_by_key(3)>

=item *

L<OPENSSL_thread_stop(3)>

=item *

L<OSSL_STORE_open(3)>

=item *

L<PEM_read_bio_Parameters(3)>, L<PEM_read_bio_PrivateKey(3)>, L<PEM_read_bio_PUBKEY(3)>,
L<PEM_read_PrivateKey(3)> and L<PEM_read_PUBKEY(3)>

=item *

L<PEM_write_bio_PrivateKey(3)>, L<PEM_write_bio_PUBKEY(3)>, L<PEM_write_PrivateKey(3)>
and L<PEM_write_PUBKEY(3)>

=item *

L<PEM_X509_INFO_read_bio(3)> and L<PEM_X509_INFO_read(3)>

=item *

L<PKCS12_add_key(3)>, L<PKCS12_add_safe(3)>, L<PKCS12_add_safes(3)>,
L<PKCS12_create(3)>, L<PKCS12_decrypt_skey(3)>, L<PKCS12_init(3)>, L<PKCS12_item_decrypt_d2i(3)>,
L<PKCS12_item_i2d_encrypt(3)>, L<PKCS12_key_gen_asc(3)>, L<PKCS12_key_gen_uni(3)>,
L<PKCS12_key_gen_utf8(3)>, L<PKCS12_pack_p7encdata(3)>, L<PKCS12_pbe_crypt(3)>,
L<PKCS12_PBE_keyivgen(3)>, L<PKCS12_SAFEBAG_create_pkcs8_encrypt(3)>

=item *

L<PKCS5_pbe_set0_algor(3)>, L<PKCS5_pbe_set(3)>, L<PKCS5_pbe2_set_iv(3)>,
L<PKCS5_pbkdf2_set(3)> and L<PKCS5_v2_scrypt_keyivgen(3)>

=item *

L<PKCS7_encrypt(3)>, L<PKCS7_new(3)> and L<PKCS7_sign(3)>

=item *

L<PKCS8_decrypt(3)>, L<PKCS8_encrypt(3)> and L<PKCS8_set0_pbe(3)>

=item *

L<RAND_bytes(3)> and L<RAND_priv_bytes(3)>

=item *

L<SMIME_write_ASN1(3)>

=item *

L<SSL_load_client_CA_file(3)>

=item *

L<SSL_CTX_new(3)>

=item *

L<TS_RESP_CTX_new(3)>

=item *

L<X509_CRL_new(3)>

=item *

L<X509_load_cert_crl_file(3)> and L<X509_load_cert_file(3)>

=item *

L<X509_LOOKUP_by_subject(3)> and L<X509_LOOKUP_ctrl(3)>

=item *

L<X509_NAME_hash(3)>

=item *

L<X509_new(3)>

=item *

L<X509_REQ_new(3)> and L<X509_REQ_verify(3)>

=item *

L<X509_STORE_CTX_new(3)>, L<X509_STORE_set_default_paths(3)>, L<X509_STORE_load_file(3)>,
L<X509_STORE_load_locations(3)> and L<X509_STORE_load_store(3)>

=back

=head4 New functions that use a Library context

The following functions can be passed a library context if required.
Passing NULL will use the default library context.

=over 4

=item *

L<BIO_new_from_core_bio(3)>

=item *

L<EVP_ASYM_CIPHER_fetch(3)> and L<EVP_ASYM_CIPHER_do_all_provided(3)>

=item *

L<EVP_CIPHER_fetch(3)> and L<EVP_CIPHER_do_all_provided(3)>

=item *

L<EVP_default_properties_enable_fips(3)> and
L<EVP_default_properties_is_fips_enabled(3)>

=item *

L<EVP_KDF_fetch(3)> and L<EVP_KDF_do_all_provided(3)>

=item *

L<EVP_KEM_fetch(3)> and L<EVP_KEM_do_all_provided(3)>

=item *

L<EVP_KEYEXCH_fetch(3)> and L<EVP_KEYEXCH_do_all_provided(3)>

=item *

L<EVP_KEYMGMT_fetch(3)> and L<EVP_KEYMGMT_do_all_provided(3)>

=item *

L<EVP_MAC_fetch(3)> and L<EVP_MAC_do_all_provided(3)>

=item *

L<EVP_MD_fetch(3)> and L<EVP_MD_do_all_provided(3)>

=item *

L<EVP_PKEY_CTX_new_from_pkey(3)>

=item *

L<EVP_PKEY_Q_keygen(3)>

=item *

L<EVP_Q_mac(3)> and L<EVP_Q_digest(3)>

=item *

L<EVP_RAND(3)> and L<EVP_RAND_do_all_provided(3)>

=item *

L<EVP_set_default_properties(3)>

=item *

L<EVP_SIGNATURE_fetch(3)> and L<EVP_SIGNATURE_do_all_provided(3)>

=item *

L<OSSL_CMP_CTX_new(3)> and L<OSSL_CMP_SRV_CTX_new(3)>

=item *

L<OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert(3)>

=item *

L<OSSL_CRMF_MSG_create_popo(3)> and L<OSSL_CRMF_MSGS_verify_popo(3)>

=item *

L<OSSL_CRMF_pbm_new(3)> and L<OSSL_CRMF_pbmp_new(3)>

=item *

L<OSSL_DECODER_CTX_add_extra(3)> and L<OSSL_DECODER_CTX_new_for_pkey(3)>

=item *

L<OSSL_DECODER_fetch(3)> and L<OSSL_DECODER_do_all_provided(3)>

=item *

L<OSSL_ENCODER_CTX_add_extra(3)>

=item *

L<OSSL_ENCODER_fetch(3)> and L<OSSL_ENCODER_do_all_provided(3)>

=item *

L<OSSL_LIB_CTX_free(3)>, L<OSSL_LIB_CTX_load_config(3)> and L<OSSL_LIB_CTX_set0_default(3)>

=item *

L<OSSL_PROVIDER_add_builtin(3)>, L<OSSL_PROVIDER_available(3)>,
L<OSSL_PROVIDER_do_all(3)>, L<OSSL_PROVIDER_load(3)>,
L<OSSL_PROVIDER_set_default_search_path(3)> and L<OSSL_PROVIDER_try_load(3)>

=item *

L<OSSL_SELF_TEST_get_callback(3)> and L<OSSL_SELF_TEST_set_callback(3)>

=item *

L<OSSL_STORE_attach(3)>

=item *

L<OSSL_STORE_LOADER_fetch(3)> and L<OSSL_STORE_LOADER_do_all_provided(3)>

=item *

L<RAND_get0_primary(3)>, L<RAND_get0_private(3)>, L<RAND_get0_public(3)>,
L<RAND_set_DRBG_type(3)> and L<RAND_set_seed_source_type(3)>

=back

=head3 Providers

Providers are described in detail here L<crypto(7)/Providers>.
See also L<crypto(7)/OPENSSL PROVIDERS>.

=head3 Fetching algorithms and property queries

Implicit and Explicit Fetching is described in detail here
L<crypto(7)/ALGORITHM FETCHING>.

=head3 Mapping EVP controls and flags to provider L<OSSL_PARAM(3)> parameters

The existing functions for controls (such as L<EVP_CIPHER_CTX_ctrl(3)>) and
manipulating flags (such as L<EVP_MD_CTX_set_flags(3)>)internally use
B<OSSL_PARAMS> to pass information to/from provider objects.
See L<OSSL_PARAM(3)> for additional information related to parameters.

For ciphers see L<EVP_EncryptInit(3)/CONTROLS>, L<EVP_EncryptInit(3)/FLAGS> and
L<EVP_EncryptInit(3)/PARAMETERS>.

For digests see L<EVP_DigestInit(3)/CONTROLS>, L<EVP_DigestInit(3)/FLAGS> and
L<EVP_DigestInit(3)/PARAMETERS>.

=head3 Deprecation of Low Level Functions

A significant number of APIs have been deprecated in OpenSSL 3.0.
This section describes some common categories of deprecations.
See L</Deprecated function mappings> for the list of deprecated functions
that refer to these categories.

=head4 Providers are a replacement for engines and low-level method overrides

Any accessor that uses an ENGINE is deprecated (such as EVP_PKEY_set1_engine()).
Applications using engines should instead use providers.

Before providers were added algorithms were overriden by changing the methods
used by algorithms. All these methods such as RSA_new_method() and RSA_meth_new()
are now deprecated and can be replaced by using providers instead.

=head4 Deprecated i2d and d2i functions for low-level key types

Any i2d and d2i functions such as d2i_DHparams() that take a low-level key type
have been deprecated. Applications should instead use the L<OSSL_DECODER(3)> and
L<OSSL_ENCODER(3)> APIs to read and write files.
See L<d2i_RSAPrivateKey(3)/Migration> for further details.

=head4 Deprecated low-level key object getters and setters

Applications that set or get low-level key objects (such as EVP_PKEY_set1_DH()
or EVP_PKEY_get0()) should instead use the OSSL_ENCODER
(See L<OSSL_ENCODER_to_bio(3)>) or OSSL_DECODER (See L<OSSL_DECODER_from_bio(3)>)
APIs, or alternatively use L<EVP_PKEY_fromdata(3)> or L<EVP_PKEY_todata(3)>.

=head4 Deprecated low-level key parameter getters

Functions that access low-level objects directly such as L<RSA_get0_n(3)> are now
deprecated. Applications should use one of L<EVP_PKEY_get_bn_param(3)>,
L<EVP_PKEY_get_int_param(3)>, l<EVP_PKEY_get_size_t_param(3)>,
L<EVP_PKEY_get_utf8_string_param(3)>, L<EVP_PKEY_get_octet_string_param(3)> or
L<EVP_PKEY_get_params(3)> to access fields from an EVP_PKEY.
Gettable parameters are listed in L<EVP_PKEY-RSA(7)/Common RSA parameters>,
L<EVP_PKEY-DH(7)/DH parameters>, L<EVP_PKEY-DSA(7)/DSA parameters>,
L<EVP_PKEY-FFC(7)/FFC parameters>, L<EVP_PKEY-EC(7)/Common EC parameters> and
L<EVP_PKEY-X25519(7)/Common X25519, X448, ED25519 and ED448 parameters>.
Applications may also use L<EVP_PKEY_todata(3)> to return all fields.

=head4 Deprecated low-level key parameter setters

Functions that access low-level objects directly such as L<RSA_set0_crt_params(3)>
are now deprecated. Applications should use L<EVP_PKEY_fromdata(3)> to create
new keys from user provided key data. Keys should be immutable once they are
created, so if required the user may use L<EVP_PKEY_todata(3)>, L<OSSL_PARAM_merge(3)>,
and L<EVP_PKEY_fromdata(3)> to create a modified key.
See L<EVP_PKEY-DH(7)/Examples> for more information.
See L</Deprecated low-level key generation functions> for information on
generating a key using parameters.

=head4 Deprecated low-level object creation

Low-level objects were created using methods such as L<RSA_new(3)>,
L<RSA_up_ref(3)> and L<RSA_free(3)>. Applications should instead use the
high-level EVP_PKEY APIs, e.g. L<EVP_PKEY_new(3)>, L<EVP_PKEY_up_ref(3)> and
L<EVP_PKEY_free(3)>.
See also L<EVP_PKEY_CTX_new_from_name(3)> and L<EVP_PKEY_CTX_new_from_pkey(3)>.

EVP_PKEYs may be created in a variety of ways:
See also L</Deprecated low-level key generation functions>,
L</Deprecated low-level key reading and writing functions> and
L</Deprecated low-level key parameter setters>.

=head4 Deprecated low-level encryption functions

Low-level encryption functions such as L<AES_encrypt(3)> and L<AES_decrypt(3)>
have been informally discouraged from use for a long time. Applications should
instead use the high level EVP APIs L<EVP_EncryptInit_ex(3)>,
L<EVP_EncryptUpdate(3)>, and L<EVP_EncryptFinal_ex(3)> or
L<EVP_DecryptInit_ex(3)>, L<EVP_DecryptUpdate(3)> and L<EVP_DecryptFinal_ex(3)>.

=head4 Deprecated low-level digest functions

Use of low-level digest functions such as L<SHA1_Init(3)> have been
informally discouraged from use for a long time.  Applications should instead
use the the high level EVP APIs L<EVP_DigestInit_ex(3)>, L<EVP_DigestUpdate(3)>
and L<EVP_DigestFinal_ex(3)>, or the quick one-shot L<EVP_Q_digest(3)>.

Note that the functions L<SHA1(3)>, L<SHA224(3)>, L<SHA256(3)>, L<SHA384(3)>
and L<SHA512(3)> have changed to macros that use L<EVP_Q_digest(3)>.

=head4 Deprecated low-level signing functions

Use of low-level signing functions such as L<DSA_sign(3)> have been
informally discouraged for a long time. Instead applications should use
L<EVP_DigestSign(3)> and L<EVP_DigestVerify(3)>.
See also L<EVP_SIGNATURE-RSA(7)>, L<EVP_SIGNATURE-DSA(7)>,
L<EVP_SIGNATURE-ECDSA(7)> and L<EVP_SIGNATURE-ED25519(7)>.

=head4 Deprecated low-level MAC functions

Low-level mac functions such as L<CMAC_Init(3)> are deprecated.
Applications should instead use the new L<EVP_MAC(3)> interface, using
L<EVP_MAC_CTX_new(3)>, L<EVP_MAC_CTX_free(3)>, L<EVP_MAC_init(3)>,
L<EVP_MAC_update(3)> and L<EVP_MAC_final(3)> or the single-shot MAC function
L<EVP_Q_mac(3)>.
See L<EVP_MAC(3)>, L<EVP_MAC-HMAC(7)>, L<EVP_MAC-CMAC(7)>, L<EVP_MAC-GMAC(7)>,
L<EVP_MAC-KMAC(7)>, L<EVP_MAC-BLAKE2(7)>, L<EVP_MAC-Poly1305(7)> and
L<EVP_MAC-Siphash(7)> for additional information.

Note that the one-shot method HMAC() is still available for compatibility purposes,
but this can also be replaced by using EVP_Q_MAC if a library context is required.

=head4 Deprecated low-level validation functions

Low-level validation functions such as L<DH_check(3)> have been informally
discouraged from use for a long time. Applications should instead use the high-level
EVP_PKEY APIs such as L<EVP_PKEY_check(3)>, L<EVP_PKEY_param_check(3)>,
L<EVP_PKEY_param_check_quick(3)>, L<EVP_PKEY_public_check(3)>,
L<EVP_PKEY_public_check_quick(3)>, L<EVP_PKEY_private_check(3)>,
and L<EVP_PKEY_pairwise_check(3)>.

=head4 Deprecated low-level key exchange functions

Many low-level functions have been informally discouraged from use for a long
time. Applications should instead use L<EVP_PKEY_derive(3)>.
See L<EVP_KEYEXCH-DH(7)>, L<EVP_KEYEXCH-ECDH(7)> and L<EVP_KEYEXCH-X25519(7)>.

=head4 Deprecated low-level key generation functions

Many low-level functions have been informally discouraged from use for a long
time. Applications should instead use L<EVP_PKEY_keygen_init(3)> and
L<EVP_PKEY_generate(3)> as described in L<EVP_PKEY-DSA(7)>, L<EVP_PKEY-DH(7)>,
L<EVP_PKEY-RSA(7)>, L<EVP_PKEY-EC(7)> and L<EVP_PKEY-X25519(7)>.
The 'quick' one-shot function L<EVP_PKEY_Q_keygen(3)> and macros for the most
common cases: <EVP_RSA_gen(3)> and L<EVP_EC_gen(3)> may also be used.

=head4 Deprecated low-level key reading and writing functions

Use of low-level objects (such as DSA) has been informally discouraged from use
for a long time. Functions to read and write these low-level objects (such as
PEM_read_DSA_PUBKEY()) should be replaced. Applications should instead use
L<OSSL_ENCODER_to_bio(3)> and L<OSSL_DECODER_from_bio(3)>.

=head4 Deprecated low-level key printing functions

Use of low-level objects (such as DSA) has been informally discouraged from use
for a long time. Functions to print these low-level objects such as
DSA_print() should be replaced with the equivalent EVP_PKEY functions.
Application should use one of L<EVP_PKEY_print_public(3)>,
L<EVP_PKEY_print_private(3)>, L<EVP_PKEY_print_params(3)>,
L<EVP_PKEY_print_public_fp(3)>, L<EVP_PKEY_print_private_fp(3)> or
L<EVP_PKEY_print_params_fp(3)>. Note that internally these use
L<OSSL_ENCODER_to_bio(3)> and L<OSSL_DECODER_from_bio(3)>.

=head3 Deprecated function mappings

The following functions have been deprecated in 3.0.

=over 4

=item *

AES_bi_ige_encrypt() and AES_ige_encrypt()

There is no replacement for the IGE functions. New code should not use these modes.
These undocumented functions were never integrated into the EVP layer.
They implemented the AES Infinite Garble Extension (IGE) mode and AES
Bi-directional IGE mode. These modes were never formally standardised and
usage of these functions is believed to be very small. In particular
AES_bi_ige_encrypt() has a known bug. It accepts 2 AES keys, but only one
is ever used. The security implications are believed to be minimal, but
this issue was never fixed for backwards compatibility reasons.

=item *

AES_encrypt(), AES_decrypt(), AES_set_encrypt_key(), AES_set_decrypt_key(),
AES_cbc_encrypt(), AES_cfb128_encrypt(), AES_cfb1_encrypt(), AES_cfb8_encrypt(),
AES_ecb_encrypt(), AES_ofb128_encrypt()

=item *

AES_unwrap_key(), AES_wrap_key()

See L</Deprecated low-level encryption functions>

=item *

AES_options()

There is no replacement. It returned a string indicating if the AES code was unrolled.

=item *

ASN1_digest(), ASN1_sign(), ASN1_verify()

There are no replacements. These old functions are not used, and could be
disabled with the macro NO_ASN1_OLD since OpenSSL 0.9.7.

=item *

ASN1_STRING_length_set()

Use L<ASN1_STRING_set(3)> or L<ASN1_STRING_set0(3)> instead.
This was a potentially unsafe function that could change the bounds of a
previously passed in pointer.

=item *

BF_encrypt(), BF_decrypt(), BF_set_key(), BF_cbc_encrypt(), BF_cfb64_encrypt(),
BF_ecb_encrypt(), BF_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
The Blowfish algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

BF_options()

There is no replacement. This option returned a constant string.

=item *

BIO_get_callback(), BIO_set_callback(), BIO_debug_callback()

Use the respective non-deprecated _ex() functions.

=item *

BN_is_prime_ex(), BN_is_prime_fasttest_ex()

Use L<BN_check_prime(3)> which avoids possible misuse and always uses at least
64 rounds of the Miller-Rabin primality test.

=item *

BN_pseudo_rand(), BN_pseudo_rand_range()

Use L<BN_rand(3)> and L<BN_rand_range(3)>.

=item *

BN_X931_derive_prime_ex(), BN_X931_generate_prime_ex(), BN_X931_generate_Xpq()

There are no replacements for these low-level functions. They were used internally
by RSA_X931_derive_ex() and RSA_X931_generate_key_ex() which are also deprecated.
Use L<EVP_PKEY_keygen(3)> instead.

=item *

Camellia_encrypt(), Camellia_decrypt(), Camellia_set_key(),
Camellia_cbc_encrypt(), Camellia_cfb128_encrypt(), Camellia_cfb1_encrypt(),
Camellia_cfb8_encrypt(), Camellia_ctr128_encrypt(), Camellia_ecb_encrypt(),
Camellia_ofb128_encrypt()

See L</Deprecated low-level encryption functions>.

=item *

CAST_encrypt(), CAST_decrypt(), CAST_set_key(), CAST_cbc_encrypt(),
CAST_cfb64_encrypt(), CAST_ecb_encrypt(), CAST_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
The CAST algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

CMAC_CTX_new(), CMAC_CTX_cleanup(), CMAC_CTX_copy(), CMAC_CTX_free(),
CMAC_CTX_get0_cipher_ctx()

See L</Deprecated low-level MAC functions>.

=item *

CMAC_Init(), CMAC_Update(), CMAC_Final(), CMAC_resume()

See L</Deprecated low-level MAC functions>.

=item *

CRYPTO_mem_ctrl(), CRYPTO_mem_debug_free(), CRYPTO_mem_debug_malloc(),
CRYPTO_mem_debug_pop(), CRYPTO_mem_debug_push(), CRYPTO_mem_debug_realloc(),
CRYPTO_mem_leaks(), CRYPTO_mem_leaks_cb(), CRYPTO_mem_leaks_fp(),
CRYPTO_set_mem_debug()

Memory-leak checking has been deprecated in favor of more modern development
tools, such as compiler memory and leak sanitizers or Valgrind.

=item *

CRYPTO_cts128_encrypt_block(), CRYPTO_cts128_encrypt(),
CRYPTO_cts128_decrypt_block(), CRYPTO_cts128_decrypt(),
CRYPTO_nistcts128_encrypt_block(), CRYPTO_nistcts128_encrypt(),
CRYPTO_nistcts128_decrypt_block(), CRYPTO_nistcts128_decrypt()

Use the higher level functions EVP_CipherInit_ex2(), EVP_CipherUpdate() and
EVP_CipherFinal_ex() instead.
See the "cts_mode" parameter in
L<EVP_EncryptInit(3)/Gettable and Settable EVP_CIPHER_CTX parameters>.
See L<EVP_EncryptInit(3)/EXAMPLES> for a AES-256-CBC-CTS example.

=item *

d2i_DHparams(), d2i_DHxparams(), d2i_DSAparams(), d2i_DSAPrivateKey(),
d2i_DSAPrivateKey_bio(), d2i_DSAPrivateKey_fp(), d2i_DSA_PUBKEY(),
d2i_DSA_PUBKEY_bio(), d2i_DSA_PUBKEY_fp(), d2i_DSAPublicKey(),
d2i_ECParameters(), d2i_ECPrivateKey(), d2i_ECPrivateKey_bio(),
d2i_ECPrivateKey_fp(), d2i_EC_PUBKEY(), d2i_EC_PUBKEY_bio(),
d2i_EC_PUBKEY_fp(), o2i_ECPublicKey(), d2i_RSAPrivateKey(),
d2i_RSAPrivateKey_bio(), d2i_RSAPrivateKey_fp(), d2i_RSA_PUBKEY(),
d2i_RSA_PUBKEY_bio(), d2i_RSA_PUBKEY_fp(), d2i_RSAPublicKey(),
d2i_RSAPublicKey_bio(), d2i_RSAPublicKey_fp()

See L</Deprecated i2d and d2i functions for low-level key types>

=item *

DES_crypt(), DES_fcrypt(), DES_encrypt1(), DES_encrypt2(), DES_encrypt3(),
DES_decrypt3(), DES_ede3_cbc_encrypt(), DES_ede3_cfb64_encrypt(),
DES_ede3_cfb_encrypt(),DES_ede3_ofb64_encrypt(),
DES_ecb_encrypt(), DES_ecb3_encrypt(), DES_ofb64_encrypt(), DES_ofb_encrypt(),
DES_cfb64_encrypt DES_cfb_encrypt(), DES_cbc_encrypt(), DES_ncbc_encrypt(),
DES_pcbc_encrypt(), DES_xcbc_encrypt(), DES_cbc_cksum(), DES_quad_cksum(),
DES_check_key_parity(), DES_is_weak_key(), DES_key_sched(), DES_options(),
DES_random_key(), DES_set_key(), DES_set_key_checked(), DES_set_key_unchecked(),
DES_set_odd_parity(), DES_string_to_2keys(), DES_string_to_key()

See L</Deprecated low-level encryption functions>.
Algorithms for "DESX-CBC", "DES-ECB", "DES-CBC", "DES-OFB", "DES-CFB",
"DES-CFB1" and "DES-CFB8" have been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

DH_bits(), DH_security_bits(), DH_size()

Use L<EVP_PKEY_get_bits(3)>, L<EVP_PKEY_get_security_bits(3)> and
L<EVP_PKEY_get_size(3)>.

=item *

DH_check(), DH_check_ex(), DH_check_params(), DH_check_params_ex(),
DH_check_pub_key(), DH_check_pub_key_ex()

See L</Deprecated low-level validation functions>

=item *

DH_clear_flags(), DH_test_flags(), DH_set_flags()

The B<DH_FLAG_CACHE_MONT_P> flag has been deprecated without replacement.
The B<DH_FLAG_TYPE_DH> and B<DH_FLAG_TYPE_DHX> have been deprecated.
Use EVP_PKEY_is_a() to determine the type of a key.
There is no replacement for setting these flags.

=item *

DH_compute_key() DH_compute_key_padded()

See L</Deprecated low-level key exchange functions>.

=item *

DH_new(), DH_new_by_nid(), DH_free(), DH_up_ref()

See L</Deprecated low-level object creation>

=item *

DH_generate_key(), DH_generate_parameters_ex()

See L</Deprecated low-level key generation functions>.

=item *

DH_get0_pqg(), DH_get0_p(), DH_get0_q(), DH_get0_g(), DH_get0_key(),
DH_get0_priv_key(), DH_get0_pub_key(), DH_get_length(), DH_get_nid()

See L</Deprecated low-level key parameter getters>

=item *

DH_get_1024_160(), DH_get_2048_224(), DH_get_2048_256()

Applications should instead set the B<OSSL_PKEY_PARAM_GROUP_NAME> as specified in
L<EVP_PKEY-DH(7)/DH parameters>) to one of "dh_1024_160", "dh_2048_224" or
"dh_2048_256" when generating a DH key.

=item *

DH_KDF_X9_42()

Applications should use L<EVP_PKEY_CTX_set_dh_kdf_type(3)> instead.

=item *

DH_get_default_method(), DH_get0_engine(), DH_meth_*(), DH_new_method(),
DH_OpenSSL(), DH_get_ex_data(), DH_set_default_method(), DH_set_method(),
DH_set_ex_data()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

DHparams_print(), DHparams_print_fp()

See L</Deprecated low-level key printing functions>

=item *

DH_set0_key(), DH_set0_pqg(), DH_set_length()

See L</Deprecated low-level key parameter setters>

=item *

DSA_bits(), DSA_security_bits(), DSA_size()

Use L<EVP_PKEY_get_bits(3)>, L<EVP_PKEY_get_security_bits(3)> and
L<EVP_PKEY_get_size(3)>.

=item *

DHparams_dup(), DSA_dup_DH()

There is no direct replacement. Applications may use L<EVP_PKEY_copy_parameters(3)>
and L<EVP_PKEY_dup(3)> instead.

=item *

DSA_generate_key(), DSA_generate_parameters_ex()

See L</Deprecated low-level key generation functions>.

=item *

DSA_get0_engine(), DSA_get_default_method(), DSA_get_ex_data(),
DSA_get_method(), DSA_meth_*(), DSA_new_method(), DSA_OpenSSL(),
DSA_set_default_method(), DSA_set_ex_data(), DSA_set_method()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

DSA_get0_p(), DSA_get0_q(), DSA_get0_g(), DSA_get0_pqg(), DSA_get0_key(),
DSA_get0_priv_key(), DSA_get0_pub_key()

See L</Deprecated low-level key parameter getters>.

=item *

DSA_new(), DSA_free(), DSA_up_ref()

See L</Deprecated low-level object creation>

=item *

DSAparams_dup()

There is no direct replacement. Applications may use L<EVP_PKEY_copy_parameters(3)>
and L<EVP_PKEY_dup(3)> instead.

=item *

DSAparams_print(), DSAparams_print_fp(), DSA_print(), DSA_print_fp()

See L</Deprecated low-level key printing functions>

=item *

DSA_set0_key(), DSA_set0_pqg()

See L</Deprecated low-level key parameter setters>

=item *

DSA_set_flags(), DSA_clear_flags(), DSA_test_flags()

The B<DSA_FLAG_CACHE_MONT_P> flag has been deprecated without replacement.

=item *

DSA_sign(), DSA_do_sign(), DSA_sign_setup(), DSA_verify(), DSA_do_verify()

See L</Deprecated low-level signing functions>.

=item *

ECDH_compute_key()

See L</Deprecated low-level key exchange functions>.

=item *

ECDH_KDF_X9_62()

Applications may either set this using the helper function
L<EVP_PKEY_CTX_set_ecdh_kdf_type(3)> or by setting an L<OSSL_PARAM(3)> using the
"kdf-type" as shown in L<EVP_KEYEXCH-ECDH(7)/EXAMPLES>

=item *

ECDSA_sign(), ECDSA_sign_ex(), ECDSA_sign_setup(), ECDSA_do_sign(),
ECDSA_do_sign_ex(), ECDSA_verify(), ECDSA_do_verify()

See L</Deprecated low-level signing functions>.

=item *

ECDSA_size()

Applications should use L<EVP_PKEY_get_size(3)>.

=item *

EC_GF2m_simple_method(), EC_GFp_mont_method(), EC_GFp_nist_method(),
EC_GFp_nistp224_method(), EC_GFp_nistp256_method(), EC_GFp_nistp521_method(),
EC_GFp_simple_method()

There are no replacements for these functions. Applications should rely on the
library automatically assigning a suitable method internally when an EC_GROUP
is constructed.

=item *

EC_GROUP_clear_free()

Use L<EC_GROUP_free(3)> instead.

=item *

EC_GROUP_get_curve_GF2m(), EC_GROUP_get_curve_GFp(), EC_GROUP_set_curve_GF2m(),
EC_GROUP_set_curve_GFp()

Applications should use L<EC_GROUP_get_curve(3)> and L<EC_GROUP_set_curve(3)>.

=item *

EC_GROUP_have_precompute_mult(), EC_GROUP_precompute_mult(),
EC_KEY_precompute_mult()

These functions are not widely used. Applications should instead switch to
named curves which OpenSSL has hardcoded lookup tables for.

=item *

EC_GROUP_new(), EC_GROUP_method_of(), EC_POINT_method_of()

EC_METHOD is now an internal-only concept and a suitable EC_METHOD is assigned
internally without application intervention.
Users of EC_GROUP_new() should switch to a different suitable constructor.

=item *

EC_KEY_can_sign()

Applications should use L<EVP_PKEY_can_sign(3)> instead.

=item *

EC_KEY_check_key()

See L</Deprecated low-level validation functions>

=item *

EC_KEY_set_flags(), EC_KEY_get_flags(), EC_KEY_clear_flags()

See L<EVP_PKEY-EC(7)/Common EC parameters> which handles flags as seperate
parameters for B<OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT>,
B<OSSL_PKEY_PARAM_EC_GROUP_CHECK_TYPE>, B<OSSL_PKEY_PARAM_EC_ENCODING>,
B<OSSL_PKEY_PARAM_USE_COFACTOR_ECDH> and
B<OSSL_PKEY_PARAM_EC_INCLUDE_PUBLIC>.
See also L<EVP_PKEY-EC(7)/EXAMPLES>

=item *

EC_KEY_dup(), EC_KEY_copy()

There is no direct replacement. Applications may use L<EVP_PKEY_copy_parameters(3)>
and L<EVP_PKEY_dup(3)> instead.

=item *

EC_KEY_decoded_from_explicit_params()

There is no replacement.

=item *

EC_KEY_generate_key()

See L</Deprecated low-level key generation functions>.

=item *

EC_KEY_get0_group(), EC_KEY_get0_private_key(), EC_KEY_get0_public_key(),
EC_KEY_get_conv_form(), EC_KEY_get_enc_flags()

See L</Deprecated low-level key parameter getters>.

=item *

EC_KEY_get0_engine(), EC_KEY_get_default_method(), EC_KEY_get_method(),
EC_KEY_new_method(), EC_KEY_get_ex_data(), EC_KEY_OpenSSL(),
EC_KEY_set_ex_data(), EC_KEY_set_default_method(), EC_KEY_METHOD_*(),
EC_KEY_set_method()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

EC_METHOD_get_field_type()

Use L<EC_GROUP_get_field_type(3)> instead.
See L</Providers are a replacement for engines and low-level method overrides>

=item *

EC_KEY_key2buf(), EC_KEY_oct2key(), EC_KEY_oct2priv(), EC_KEY_priv2buf(),
EC_KEY_priv2oct()

There are no replacements for these.

=item *

EC_KEY_new(), EC_KEY_new_by_curve_name(), EC_KEY_free(), EC_KEY_up_ref()

See L</Deprecated low-level object creation>

=item *

EC_KEY_print(), EC_KEY_print_fp()

See L</Deprecated low-level key printing functions>

=item *

EC_KEY_set_asn1_flag(), EC_KEY_set_conv_form(), EC_KEY_set_enc_flags()

See L</Deprecated low-level key parameter setters>.

=item *

EC_KEY_set_group(), EC_KEY_set_private_key(), EC_KEY_set_public_key(),
EC_KEY_set_public_key_affine_coordinates()

See L</Deprecated low-level key parameter setters>.

=item *

ECParameters_print(), ECParameters_print_fp(), ECPKParameters_print(),
ECPKParameters_print_fp()

See L</Deprecated low-level key printing functions>

=item *

EC_POINT_bn2point(), EC_POINT_point2bn()

These functions were not particularly useful, since EC point serialization
formats are not individual big-endian integers.

=item *

EC_POINT_get_affine_coordinates_GF2m(), EC_POINT_get_affine_coordinates_GFp(),
EC_POINT_set_affine_coordinates_GF2m(), EC_POINT_set_affine_coordinates_GFp()

Applications should use L<EC_POINT_get_affine_coordinates(3)> and
L<EC_POINT_set_affine_coordinates(3)> instead.

=item *

EC_POINT_get_Jprojective_coordinates_GFp(), EC_POINT_set_Jprojective_coordinates_GFp()

These functions are not widely used. Applications should instead use the
L<EC_POINT_set_affine_coordinates(3)> and L<EC_POINT_get_affine_coordinates(3)>
functions.

=item *

EC_POINT_make_affine(), EC_POINTs_make_affine()

There is no replacement. These functions were not widely used, and OpenSSL
automatically performs this conversion when needed.

=item *

EC_POINT_set_compressed_coordinates_GF2m(), EC_POINT_set_compressed_coordinates_GFp()

Applications should use L<EC_POINT_set_compressed_coordinates(3)> instead.

=item *

EC_POINTs_mul()

This function is not widely used. Applications should instead use the
L<EC_POINT_mul(3)> function.

=item *

B<ENGINE_*()>

All engine functions are deprecated. An engine should be rewritten as a provider.
See L</Providers are a replacement for engines and low-level method overrides>.

=item *

B<ERR_load_*()>, ERR_func_error_string(), ERR_get_error_line(),
ERR_get_error_line_data(), ERR_get_state()

OpenSSL now loads error strings automatically so these functions are not needed.

=item *

ERR_peek_error_line_data(), ERR_peek_last_error_line_data()

The new functions are L<ERR_peek_error_func(3)>, L<ERR_peek_last_error_func(3)>,
L<ERR_peek_error_data(3)>, L<ERR_peek_last_error_data(3)>, L<ERR_get_error_all(3)>,
L<ERR_peek_error_all(3)> and L<ERR_peek_last_error_all(3)>.
Applications should use L<ERR_get_error_all(3)>, or pick information
with ERR_peek functions and finish off with getting the error code by using
L<ERR_get_error(3)>.

=item *

EVP_CIPHER_CTX_iv(), EVP_CIPHER_CTX_iv_noconst(), EVP_CIPHER_CTX_original_iv()

Applications should instead use L<EVP_CIPHER_CTX_get_updated_iv(3)>,
L<EVP_CIPHER_CTX_get_updated_iv(3)> and L<EVP_CIPHER_CTX_get_original_iv(3)>
respectively.
See L<EVP_CIPHER_CTX_get_original_iv(3)> for further information.

=item *

B<EVP_CIPHER_meth_*()>, EVP_MD_CTX_set_update_fn(), EVP_MD_CTX_update_fn(),
B<EVP_MD_meth_*()>

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

EVP_PKEY_CTRL_PKCS7_ENCRYPT(), EVP_PKEY_CTRL_PKCS7_DECRYPT(),
EVP_PKEY_CTRL_PKCS7_SIGN(), EVP_PKEY_CTRL_CMS_ENCRYPT(),
EVP_PKEY_CTRL_CMS_DECRYPT(), and EVP_PKEY_CTRL_CMS_SIGN()

These control operations are not invoked by the OpenSSL library anymore and
are replaced by direct checks of the key operation against the key type
when the operation is initialized.

=item *

EVP_PKEY_CTX_get0_dh_kdf_ukm(), EVP_PKEY_CTX_get0_ecdh_kdf_ukm()

See the "kdf-ukm" item in L<EVP_KEYEXCH-DH(7)/DH key exchange parameters> and
L<EVP_KEYEXCH-ECDH(7)/ECDH Key Exchange parameters>.
These functions are obsolete and should not be required.

=item *

EVP_PKEY_CTX_set_rsa_keygen_pubexp()

Applications should use L<EVP_PKEY_CTX_set1_rsa_keygen_pubexp(3)> instead.

=item *

EVP_PKEY_cmp(), EVP_PKEY_cmp_parameters()

Applications should use L<EVP_PKEY_eq(3)> and L<EVP_PKEY_parameters_eq(3)> instead.
See L<EVP_PKEY_copy_parameters(3)> for further details.

=item *

EVP_PKEY_encrypt_old(), EVP_PKEY_decrypt_old(),

Applications should use L<EVP_PKEY_encrypt_init(3)> and L<EVP_PKEY_encrypt(3)> or
L<EVP_PKEY_decrypt_init(3)> and L<EVP_PKEY_decrypt(3)> instead.

=item *

EVP_PKEY_get0()

This function returns NULL if the key comes from a provider.

=item *

EVP_PKEY_get0_DH(), EVP_PKEY_get0_DSA(), EVP_PKEY_get0_EC_KEY(), EVP_PKEY_get0_RSA(),
EVP_PKEY_get1_DH(), EVP_PKEY_get1_DSA(), EVP_PKEY_get1_EC_KEY and EVP_PKEY_get1_RSA(),
EVP_PKEY_get0_hmac(), EVP_PKEY_get0_poly1305(), EVP_PKEY_get0_siphash()

See L</Functions that return an internal key should be treated as read only>.

=item *

B<EVP_PKEY_meth_*()>

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

EVP_PKEY_new_CMAC_key()

See L</Deprecated low-level MAC functions>.

=item *

EVP_PKEY_assign(), EVP_PKEY_set1_DH(), EVP_PKEY_set1_DSA(),
EVP_PKEY_set1_EC_KEY(), EVP_PKEY_set1_RSA()

See L</Deprecated low-level key object getters and setters>

=item *

EVP_PKEY_set1_tls_encodedpoint() EVP_PKEY_get1_tls_encodedpoint()

These functions were previously used by libssl to set or get an encoded public
key into/from an EVP_PKEY object. With OpenSSL 3.0 these are replaced by the more
generic functions L<EVP_PKEY_set1_encoded_public_key(3)> and
L<EVP_PKEY_get1_encoded_public_key(3)>.
The old versions have been converted to deprecated macros that just call the
new functions.

=item *

EVP_PKEY_set1_engine(), EVP_PKEY_get0_engine()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

EVP_PKEY_set_alias_type()

This function has been removed. There is no replacement.
See L</EVP_PKEY_set_alias_type() method has been removed>

=item *

HMAC_Init_ex(), HMAC_Update(), HMAC_Final(), HMAC_size()

See L</Deprecated low-level MAC functions>.

=item *

HMAC_CTX_new(), HMAC_CTX_free(), HMAC_CTX_copy(), HMAC_CTX_reset(),
HMAC_CTX_set_flags(), HMAC_CTX_get_md()

See L</Deprecated low-level MAC functions>.

=item *

i2d_DHparams(), i2d_DHxparams()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

i2d_DSAparams(), i2d_DSAPrivateKey(), i2d_DSAPrivateKey_bio(),
i2d_DSAPrivateKey_fp(), i2d_DSA_PUBKEY(), i2d_DSA_PUBKEY_bio(),
i2d_DSA_PUBKEY_fp(), i2d_DSAPublicKey()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

i2d_ECParameters(), i2d_ECPrivateKey(), i2d_ECPrivateKey_bio(),
i2d_ECPrivateKey_fp(), i2d_EC_PUBKEY(), i2d_EC_PUBKEY_bio(),
i2d_EC_PUBKEY_fp(), i2o_ECPublicKey()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

i2d_RSAPrivateKey(), i2d_RSAPrivateKey_bio(), i2d_RSAPrivateKey_fp(),
i2d_RSA_PUBKEY(), i2d_RSA_PUBKEY_bio(), i2d_RSA_PUBKEY_fp(),
i2d_RSAPublicKey(), i2d_RSAPublicKey_bio(), i2d_RSAPublicKey_fp()

See L</Deprecated low-level key reading and writing functions>
and L<d2i_RSAPrivateKey(3)/Migration>

=item *

IDEA_encrypt(), IDEA_set_decrypt_key(), IDEA_set_encrypt_key(),
IDEA_cbc_encrypt(), IDEA_cfb64_encrypt(), IDEA_ecb_encrypt(),
IDEA_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
IDEA has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

IDEA_options()

There is no replacement. This function returned a constant string.

=item *

MD2(), MD2_Init(), MD2_Update(), MD2_Final()

See L</Deprecated low-level encryption functions>.
MD2 has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

MD2_options()

There is no replacement. This function returned a constant string.

=item *

MD4(), MD4_Init(), MD4_Update(), MD4_Final(), MD4_Transform()

See L</Deprecated low-level encryption functions>.
MD4 has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

MDC2(), MDC2_Init(), MDC2_Update(), MDC2_Final()

See L</Deprecated low-level encryption functions>.
MDC2 has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

MD5(), MD5_Init(), MD5_Update(), MD5_Final(), MD5_Transform()

See L</Deprecated low-level encryption functions>.

=item *

NCONF_WIN32()

This undocumented function has no replacement.
See L<config(5)/HISTORY> for more details.

=item *

OCSP_parse_url()

Use L<OSSL_HTTP_parse_url(3)> instead.

=item *

B<OCSP_REQ_CTX> type and B<OCSP_REQ_CTX_*()> functions

These methods were used to collect all necessary data to form a HTTP request,
and to perform the HTTP transfer with that request.  With OpenSSL 3.0, the
type is B<OSSL_HTTP_REQ_CTX>, and the deprecated functions are replaced
with B<OSSL_HTTP_REQ_CTX_*()>. See L<OSSL_HTTP_REQ_CTX(3)> for additional
details.

=item *

OPENSSL_fork_child(), OPENSSL_fork_parent(), OPENSSL_fork_prepare()

There is no replacement for these functions. These pthread fork support methods
were unused by OpenSSL.

=item *

OSSL_STORE_ctrl(), OSSL_STORE_do_all_loaders(), OSSL_STORE_LOADER_get0_engine(),
OSSL_STORE_LOADER_get0_scheme(), OSSL_STORE_LOADER_new(),
OSSL_STORE_LOADER_set_attach(), OSSL_STORE_LOADER_set_close(),
OSSL_STORE_LOADER_set_ctrl(), OSSL_STORE_LOADER_set_eof(),
OSSL_STORE_LOADER_set_error(), OSSL_STORE_LOADER_set_expect(),
OSSL_STORE_LOADER_set_find(), OSSL_STORE_LOADER_set_load(),
OSSL_STORE_LOADER_set_open(), OSSL_STORE_LOADER_set_open_ex(),
OSSL_STORE_register_loader(), OSSL_STORE_unregister_loader(),
OSSL_STORE_vctrl()

These functions helped applications and engines create loaders for
schemes they supported.  These are all deprecated and discouraged in favour of
provider implementations, see L<provider-storemgmt(7)>.

=item *

PEM_read_DHparams(), PEM_read_bio_DHparams(),
PEM_read_DSAparams(), PEM_read_bio_DSAparams(),
PEM_read_DSAPrivateKey(), PEM_read_DSA_PUBKEY(),
PEM_read_bio_DSAPrivateKey and PEM_read_bio_DSA_PUBKEY(),
PEM_read_ECPKParameters(), PEM_read_ECPrivateKey(), PEM_read_EC_PUBKEY(),
PEM_read_bio_ECPKParameters(), PEM_read_bio_ECPrivateKey(), PEM_read_bio_EC_PUBKEY(),
PEM_read_RSAPrivateKey(), PEM_read_RSA_PUBKEY(), PEM_read_RSAPublicKey(),
PEM_read_bio_RSAPrivateKey(), PEM_read_bio_RSA_PUBKEY(), PEM_read_bio_RSAPublicKey(),
PEM_write_bio_DHparams(), PEM_write_bio_DHxparams(), PEM_write_DHparams(), PEM_write_DHxparams(),
PEM_write_DSAparams(), PEM_write_DSAPrivateKey(), PEM_write_DSA_PUBKEY(),
PEM_write_bio_DSAparams(), PEM_write_bio_DSAPrivateKey(), PEM_write_bio_DSA_PUBKEY(),
PEM_write_ECPKParameters(), PEM_write_ECPrivateKey(), PEM_write_EC_PUBKEY(),
PEM_write_bio_ECPKParameters(), PEM_write_bio_ECPrivateKey(), PEM_write_bio_EC_PUBKEY(),
PEM_write_RSAPrivateKey(), PEM_write_RSA_PUBKEY(), PEM_write_RSAPublicKey(),
PEM_write_bio_RSAPrivateKey(), PEM_write_bio_RSA_PUBKEY(),
PEM_write_bio_RSAPublicKey(),

See L</Deprecated low-level key reading and writing functions>

=item *

PKCS1_MGF1()

See L</Deprecated low-level encryption functions>.

=item *

RAND_get_rand_method(), RAND_set_rand_method(), RAND_OpenSSL(),
RAND_set_rand_engine()

Applications should instead use L<RAND_set_DRBG_type(3)>,
L<EVP_RAND(3)> and L<EVP_RAND(7)>.
See L<RAND_set_rand_method(3)> for more details.

=item *

RC2_encrypt(), RC2_decrypt(), RC2_set_key(), RC2_cbc_encrypt(), RC2_cfb64_encrypt(),
RC2_ecb_encrypt(), RC2_ofb64_encrypt(),
RC4(), RC4_set_key(), RC4_options(),
RC5_32_encrypt(), RC5_32_set_key(), RC5_32_decrypt(), RC5_32_cbc_encrypt(),
RC5_32_cfb64_encrypt(), RC5_32_ecb_encrypt(), RC5_32_ofb64_encrypt()

See L</Deprecated low-level encryption functions>.
The Algorithms "RC2", "RC4" and "RC5" have been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

RIPEMD160(), RIPEMD160_Init(), RIPEMD160_Update(), RIPEMD160_Final(),
RIPEMD160_Transform()

See L</Deprecated low-level digest functions>.
The RIPE algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

RSA_bits(), RSA_security_bits(), RSA_size()

Use L<EVP_PKEY_get_bits(3)>, L<EVP_PKEY_get_security_bits(3)> and
L<EVP_PKEY_get_size(3)>.

=item *

RSA_check_key(), RSA_check_key_ex()

See L</Deprecated low-level validation functions>

=item *

RSA_clear_flags(), RSA_flags(), RSA_set_flags(), RSA_test_flags(),
RSA_setup_blinding(), RSA_blinding_off(), RSA_blinding_on()

All of these RSA flags have been deprecated without replacement:

B<RSA_FLAG_BLINDING>, B<RSA_FLAG_CACHE_PRIVATE>, B<RSA_FLAG_CACHE_PUBLIC>,
B<RSA_FLAG_EXT_PKEY>, B<RSA_FLAG_NO_BLINDING>, B<RSA_FLAG_THREAD_SAFE>
B<RSA_METHOD_FLAG_NO_CHECK>

=item *

RSA_generate_key_ex(), RSA_generate_multi_prime_key()

See L</Deprecated low-level key generation functions>.

=item *

RSA_get0_engine()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

RSA_get0_crt_params(), RSA_get0_d(), RSA_get0_dmp1(), RSA_get0_dmq1(),
RSA_get0_e(), RSA_get0_factors(), RSA_get0_iqmp(), RSA_get0_key(),
RSA_get0_multi_prime_crt_params(), RSA_get0_multi_prime_factors(), RSA_get0_n(),
RSA_get0_p(), RSA_get0_pss_params(), RSA_get0_q(),
RSA_get_multi_prime_extra_count()

See L</Deprecated low-level key parameter getters>

=item *

RSA_new(), RSA_free(), RSA_up_ref()

See L</Deprecated low-level object creation>.

=item *

RSA_get_default_method(), RSA_get_ex_data and RSA_get_method()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

RSA_get_version()

There is no replacement.

=item *

B<RSA_meth_*()>, RSA_new_method(), RSA_null_method and RSA_PKCS1_OpenSSL()

See L</Providers are a replacement for engines and low-level method overrides>.

=item *

B<RSA_padding_add_*()>, B<RSA_padding_check_*()>

See L</Deprecated low-level signing functions> and
L</Deprecated low-level encryption functions>.

=item *

RSA_print(), RSA_print_fp()

See L</Deprecated low-level key printing functions>

=item *

RSA_public_encrypt(), RSA_private_decrypt()

See L</Deprecated low-level encryption functions>

=item *

RSA_private_encrypt(), RSA_public_decrypt()

This is equivalent to doing sign and verify recover operations (with a padding
mode of none). See L</Deprecated low-level signing functions>.

=item *

RSAPrivateKey_dup(), RSAPublicKey_dup()

There is no direct replacement. Applications may use L<EVP_PKEY_dup(3)>.

=item *

RSAPublicKey_it(), RSAPrivateKey_it()

See L</Deprecated low-level key reading and writing functions>

=item *

RSA_set0_crt_params(), RSA_set0_factors(), RSA_set0_key(),
RSA_set0_multi_prime_params()

See L</Deprecated low-level key parameter setters>.

=item *

RSA_set_default_method(), RSA_set_method(), RSA_set_ex_data()

See L</Providers are a replacement for engines and low-level method overrides>

=item *

RSA_sign(), RSA_sign_ASN1_OCTET_STRING(), RSA_verify(),
RSA_verify_ASN1_OCTET_STRING(), RSA_verify_PKCS1_PSS(),
RSA_verify_PKCS1_PSS_mgf1()

See L</Deprecated low-level signing functions>.

=item *

RSA_X931_derive_ex(), RSA_X931_generate_key_ex(), RSA_X931_hash_id()

There are no replacements for these functions.
X931 padding can be set using L<EVP_SIGNATURE-RSA(7)/Signature Parameters>.
See B<OSSL_SIGNATURE_PARAM_PAD_MODE>.

=item *

SEED_encrypt(), SEED_decrypt(), SEED_set_key(), SEED_cbc_encrypt(),
SEED_cfb128_encrypt(), SEED_ecb_encrypt(), SEED_ofb128_encrypt()

See L</Deprecated low-level encryption functions>.
The SEED algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

SHA1_Init(), SHA1_Update(), SHA1_Final(), SHA1_Transform(),
SHA224_Init(), SHA224_Update(), SHA224_Final(),
SHA256_Init(), SHA256_Update(), SHA256_Final(), SHA256_Transform(),
SHA384_Init(), SHA384_Update(), SHA384_Final(),
SHA512_Init(), SHA512_Update(), SHA512_Final(), SHA512_Transform()

See L</Deprecated low-level digest functions>.

=item *

SRP_Calc_A(), SRP_Calc_B(), SRP_Calc_client_key(), SRP_Calc_server_key(),
SRP_Calc_u(), SRP_Calc_x(), SRP_check_known_gN_param(), SRP_create_verifier(),
SRP_create_verifier_BN(), SRP_get_default_gN(), SRP_user_pwd_free(), SRP_user_pwd_new(),
SRP_user_pwd_set0_sv(), SRP_user_pwd_set1_ids(), SRP_user_pwd_set_gN(),
SRP_VBASE_add0_user(), SRP_VBASE_free(), SRP_VBASE_get1_by_user(), SRP_VBASE_init(),
SRP_VBASE_new(), SRP_Verify_A_mod_N(), SRP_Verify_B_mod_N()

There are no replacements for the SRP functions.

=item *

SSL_CTX_set_tmp_dh_callback(), SSL_set_tmp_dh_callback(),
SSL_CTX_set_tmp_dh(), SSL_set_tmp_dh()

These are used to set the Diffie-Hellman (DH) parameters that are to be used by
servers requiring ephemeral DH keys. Instead applications should consider using
the built-in DH parameters that are available by calling L<SSL_CTX_set_dh_auto(3)>
or L<SSL_set_dh_auto(3)>. If custom parameters are necessary then applications can
use the alternative functions L<SSL_CTX_set0_tmp_dh_pkey(3)> and
L<SSL_set0_tmp_dh_pkey(3)>. There is no direct replacement for the "callback"
functions. The callback was originally useful in order to have different
parameters for export and non-export ciphersuites. Export ciphersuites are no
longer supported by OpenSSL. Use of the callback functions should be replaced
by one of the other methods described above.

=item *

SSL_CTX_set_tlsext_ticket_key_cb()

Use the new L<SSL_CTX_set_tlsext_ticket_key_evp_cb(3)> function instead.

=item *

WHIRLPOOL(), WHIRLPOOL_Init(), WHIRLPOOL_Update(), WHIRLPOOL_Final(),
WHIRLPOOL_BitUpdate()

See L</Deprecated low-level digest functions>.
The Whirlpool algorithm has been moved to the L<Legacy Provider|/Legacy Algorithms>.

=item *

X509_certificate_type()

This was an undocumented function. Applications can use L<X509_get0_pubkey(3)>
and L<X509_get0_signature(3)> instead.

=item *

X509_http_nbio(), X509_CRL_http_nbio()

Use L<X509_load_http(3)> and L<X509_CRL_load_http(3)> instead.

=back

=head3 NID handling for provided keys and algorithms

The following functions for NID (numeric id) handling have changed semantics.

=over 4

=item *

EVP_PKEY_id(), EVP_PKEY_get_id()

This function was previously used to reliably return the NID of
an EVP_PKEY object, e.g., to look up the name of the algorithm of
such EVP_PKEY by calling L<OBJ_nid2sn(3)>. With the introduction
of L<provider(7)>s EVP_PKEY_id() or its new equivalent
L<EVP_PKEY_get_id(3)> might now also return the value -1
(B<EVP_PKEY_KEYMGMT>) indicating the use of a provider to
implement the EVP_PKEY object. Therefore, the use of
L<EVP_PKEY_get0_type_name(3)> is recommended for retrieving
the name of the EVP_PKEY algorithm.

=back

=head2 Using the FIPS Module in applications

See L<fips_module(7)> and L<OSSL_PROVIDER-FIPS(7)> for details.

=head2 OpenSSL command line application changes

=head3 New applications

L<B<openssl kdf>|openssl-kdf(1)> uses the new L<EVP_KDF(3)> API.
L<B<openssl kdf>|openssl-mac(1)> uses the new L<EVP_MAC(3)> API.

=head3 Added options

B<-provider_path> and B<-provider> are available to all apps and can be used
multiple times to load any providers, such as the 'legacy' provider or third
party providers. If used then the 'default' provider would also need to be
specified if required. The B<-provider_path> must be specified before the
B<-provider> option.

The B<list> app has many new options. See L<openssl-list(1)> for more
information.

B<-crl_lastupdate> and B<-crl_nextupdate> used by B<openssl ca> allows
explicit setting of fields in the generated CRL.

=head3 Removed options

Interactive mode is not longer available.

The B<-crypt> option used by B<openssl passwd>.
The B<-c> option used by B<openssl x509>, B<openssl dhparam>,
B<openssl dsaparam>, and B<openssl ecparam>.

=head3 Other Changes

The output of Command line applications may have minor changes.
These are primarily changes in capitalisation and white space.  However, in some
cases, there are additional differences.
For example, the DH parameters output from B<openssl dhparam> now lists 'P',
'Q', 'G' and 'pcounter' instead of 'prime', 'generator', 'subgroup order' and
'counter' respectively.

The B<openssl> commands that read keys, certificates, and CRLs now
automatically detect the PEM or DER format of the input files so it is not
necessary to explicitly specify the input format anymore. However if the
input format option is used the specified format will be required.

B<openssl speed> no longer uses low-level API calls.
This implies some of the performance numbers might not be comparable with the
previous releases due to higher overhead. This applies particularly to
measuring performance on smaller data chunks.

b<openssl dhparam>, B<openssl dsa>, B<openssl gendsa>, B<openssl dsaparam>,
B<openssl genrsa> and B<openssl rsa> have been modified to use PKEY APIs.
B<openssl genrsa> and B<openssl rsa> now write PKCS #8 keys by default.

=head3 Default settings

"SHA256" is now the default digest for TS query used by B<openssl ts>.

=head3 Deprecated apps

B<openssl rsautl> is deprecated, use B<openssl pkeyutl> instead.
B<openssl dhparam>, B<openssl dsa>, B<openssl gendsa>, B<openssl dsaparam>,
B<openssl genrsa>, B<openssl rsa>, B<openssl genrsa> and B<openssl rsa> are
now in maintenance mode and no new features will be added to them.

=head2 TLS Changes

=over 4

=item *

TLS 1.3 FFDHE key exchange support added

This uses DH safe prime named groups.

=item *

Support for fully "pluggable" TLSv1.3 groups.

This means that providers may supply their own group implementations (using
either the "key exchange" or the "key encapsulation" methods) which will
automatically be detected and used by libssl.

=item *

SSL and SSL_CTX options are now 64 bit instead of 32 bit.

The signatures of the functions to get and set options on SSL and
SSL_CTX objects changed from "unsigned long" to "uint64_t" type.

This may require source code changes. For example it is no longer possible
to use the B<SSL_OP_> macro values in preprocessor C<#if> conditions.
However it is still possible to test whether these macros are defined or not.

See L<SSL_CTX_get_options(3)>, L<SSL_CTX_set_options(3)>,
L<SSL_get_options(3)> and L<SSL_set_options(3)>.

=item *

SSL_set1_host() and SSL_add1_host() Changes

These functions now take IP literal addresses as well as actual hostnames.

=item *

Added SSL option SSL_OP_CLEANSE_PLAINTEXT

If the option is set, openssl cleanses (zeroizes) plaintext bytes from
internal buffers after delivering them to the application. Note,
the application is still responsible for cleansing other copies
(e.g.: data received by L<SSL_read(3)>).

=item *

Client-initiated renegotiation is disabled by default.

To allow it, use the B<-client_renegotiation> option,
the B<SSL_OP_ALLOW_CLIENT_RENEGOTIATION> flag, or the C<ClientRenegotiation>
config parameter as appropriate.

=item *

Secure renegotiation is now required by default for TLS connections

Support for RFC 5746 secure renegotiation is now required by default for
SSL or TLS connections to succeed.  Applications that require the ability
to connect to legacy peers will need to explicitly set
SSL_OP_LEGACY_SERVER_CONNECT.  Accordingly, SSL_OP_LEGACY_SERVER_CONNECT
is no longer set as part of SSL_OP_ALL.

=item *

Combining the Configure options no-ec and no-dh no longer disables TLSv1.3

Typically if OpenSSL has no EC or DH algorithms then it cannot support
connections with TLSv1.3. However OpenSSL now supports "pluggable" groups
through providers. Therefore third party providers may supply group
implementations even where there are no built-in ones. Attempting to create
TLS connections in such a build without also disabling TLSv1.3 at run time or
using third party provider groups may result in handshake failures. TLSv1.3
can be disabled at compile time using the "no-tls1_3" Configure option.

=item *

SSL_CTX_set_ciphersuites() and SSL_set_ciphersuites() changes.

The methods now ignore unknown ciphers.

=item *

Security callback change.

The security callback, which can be customised by application code, supports
the security operation SSL_SECOP_TMP_DH. This is defined to take an EVP_PKEY
in the "other" parameter. In most places this is what is passed. All these
places occur server side. However there was one client side call of this
security operation and it passed a DH object instead. This is incorrect
according to the definition of SSL_SECOP_TMP_DH, and is inconsistent with all
of the other locations. Therefore this client side call has been changed to
pass an EVP_PKEY instead.

=item *

New SSL option SSL_OP_IGNORE_UNEXPECTED_EOF

The SSL option SSL_OP_IGNORE_UNEXPECTED_EOF is introduced. If that option
is set, an unexpected EOF is ignored, it pretends a close notify was received
instead and so the returned error becomes SSL_ERROR_ZERO_RETURN.

=item *

The security strength of SHA1 and MD5 based signatures in TLS has been reduced.

This results in SSL 3, TLS 1.0, TLS 1.1 and DTLS 1.0 no longer
working at the default security level of 1 and instead requires security
level 0. The security level can be changed either using the cipher string
with C<@@SECLEVEL>, or calling L<SSL_CTX_set_security_level(3)>. This also means
that where the signature algorithms extension is missing from a ClientHello
then the handshake will fail in TLS 1.2 at security level 1. This is because,
although this extension is optional, failing to provide one means that
OpenSSL will fallback to a default set of signature algorithms. This default
set requires the availability of SHA1.

=item *

X509 certificates signed using SHA1 are no longer allowed at security level 1 and above.

In TLS/SSL the default security level is 1. It can be set either using the cipher
string with C<@@SECLEVEL>, or calling L<SSL_CTX_set_security_level(3)>. If the
leaf certificate is signed with SHA-1, a call to L<SSL_CTX_use_certificate(3)>
will fail if the security level is not lowered first.
Outside TLS/SSL, the default security level is -1 (effectively 0). It can
be set using L<X509_VERIFY_PARAM_set_auth_level(3)> or using the B<-auth_level>
options of the commands.

=back

=head1 SEE ALSO

L<fips_module(7)>

=head1 HISTORY

The migration guide was created for OpenSSL 3.0.

=head1 COPYRIGHT

Copyright 2021-2023 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the Apache License 2.0 (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut
@


1.1.1.2.2.3
log
@Pull up the following revisions(s) (requested by martin in ticket #444):
	crypto/external/bsd/openssl/dist sync with HEAD
	crypto/external/bsd/openssl/include/openssl/opensslv.h:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/Makefile:	revision 1.4
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/aesv8-armx.S:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/ghashv8-armx.S:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/aarch64/poly1305-armv8.S:	revision 1.5
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/bsaes-armv7.S:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/arch/arm/poly1305-armv8.S:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/arch/sparc64/Makefile:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/ADMISSIONS.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_ITEM_lookup.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_TABLE_add.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_security_bits.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_new_by_nid.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DTLS_get_data_mtu.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/DTLS_set_timer_cb.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set1_pbe_pass.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_scrypt_N.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_meth_get_count.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_meth_new.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_bf_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_blake2b512.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_cast5_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_chacha20.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_desx_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_idea_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_md2.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_md4.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_md5.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_mdc2.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_rc2_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_rc4.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_rc5_32_12_16_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ripemd160.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_seed_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sha1.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sha224.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sha3_224.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sm3.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_sm4_cbc.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_whirlpool.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_fork_prepare.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_INFO.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_LOADER.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_SEARCH.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_expect.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_open.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_bytes_read_bio.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read_bio_ex.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA-PSS.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set0_CA_list.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_client_hello_cb.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_keylog_callback.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_num_tickets.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_record_padding_callback.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_session_ticket_cb.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_stateless_cookie_generate_cb.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_servername_callback.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_is_resumable.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_alloc_buffers.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_signature_nid.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_in_init.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_key_update.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_read_early_data.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_UTIL_read_pw.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X25519.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_LOOKUP_meth_new.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_add_cert.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_private_key.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_cmp_time.3:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/bio.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/crypto.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ct.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/evp.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl_config.5:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ossl_store-file.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ossl_store.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/passphrase-encoding.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ssl.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/x509.7:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/x509v3_config.5:	revision 1.6
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_EXTERN_FUNCS.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_INTEGER_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_aux_cb.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_item_d2i_bio.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_item_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_item_sign.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_prefix.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_readbuffer.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_core.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_datagram.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_socket_wait.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_exp_mont.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_EncryptedData_decrypt.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_EncryptedData_encrypt.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_EnvelopedData_create.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_data_create.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_digest_create.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/CRYPTO_memcmp.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ECDSA_sign.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ASYM_CIPHER-RSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ASYM_CIPHER-SM2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_ASYM_CIPHER_free.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-AES.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-ARIA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-BLOWFISH.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-CAMELLIA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-CAST.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-CHACHA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-DES.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-IDEA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-RC2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-RC4.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-RC5.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-SEED.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-SM4.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER_CTX_get_original_iv.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-HKDF.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-KB.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-KRB5KDF.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-PBKDF1.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-PBKDF2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-PKCS12KDF.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-SCRYPT.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-SS.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-SSHKDF.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-TLS13_KDF.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-TLS1_PRF.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-X942-ASN1.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-X942-CONCAT.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF-X963.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KDF.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEM-RSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEM_free.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH-DH.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH-ECDH.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH-X25519.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYEXCH_free.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_KEYMGMT.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-BLAKE2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-CMAC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-GMAC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-HMAC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-KMAC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-Poly1305.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC-Siphash.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MAC.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-BLAKE2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD4.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD5-SHA1.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MD5.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-MDC2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-RIPEMD160.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHA1.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHA2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHA3.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SHAKE.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-SM3.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-WHIRLPOOL.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-common.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PBE_CipherInit.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-DH.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-DSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-EC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-FFC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-HMAC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-RSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-SM2.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY-X25519.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY2PKCS8.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_get0_libctx.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_get0_pkey.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_params.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_check.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_copy_parameters.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_decapsulate.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_digestsign_supports_digest.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_encapsulate.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_fromdata.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_field_type.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_group_name.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_size.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_gettable_params.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_is_a.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_set1_encoded_public_key.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_set_type.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_settable_params.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_todata.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-CTR-DRBG.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-HASH-DRBG.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-HMAC-DRBG.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-SEED-SRC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND-TEST-RAND.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_RAND.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-DSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-ECDSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-ED25519.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-HMAC.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE-RSA.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SIGNATURE.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_aes_128_gcm.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_aria_128_gcm.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_camellia_128_ecb.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_des_cbc.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_set_default_properties.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/NCONF_new_ex.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_FILE.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_gmtime.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_hexchar2int.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_s390xcap.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_strcasecmp.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ALGORITHM.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CALLBACK.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_CTX_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_HDR_get0_transactionID.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_ITAV_set0.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_MSG_get0_header.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_MSG_http_perform.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_SRV_CTX_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_STATUSINFO_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_exec_certreq.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_log_open.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CMP_validate_msg.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CORE_MAKE_FUNC.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_get0_tmpl.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_set0_validity.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_set1_regCtrl_regToken.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_MSG_set1_regInfo_certReq.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_CRMF_pbmp_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER_CTX.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER_CTX_new_for_pkey.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DECODER_from_bio.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_DISPATCH.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER_CTX.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER_CTX_new_for_pkey.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ENCODER_to_bio.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ESS_check_signing_certs.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_HTTP_REQ_CTX.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_HTTP_parse_url.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_HTTP_transfer.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_ITEM.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_LIB_CTX.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_BLD.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_allocate_from_text.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_dup.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PARAM_int.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-FIPS.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-base.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-default.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-legacy.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER-null.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_PROVIDER.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_SELF_TEST_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_SELF_TEST_set_callback.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_STORE_attach.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_trace_enabled.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_trace_get_category_num.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OSSL_trace_set_channel.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/OpenSSL_version.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_X509_INFO_read_bio_ex.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_PBE_keyivgen.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_SAFEBAG_create_cert.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_SAFEBAG_get0_attrs.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_SAFEBAG_get1_cert.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add1_attr_by_NID.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_CSPName_asc.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_cert.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_friendlyname_asc.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_localkeyid.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_add_safe.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_decrypt_skey.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_gen_mac.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_get_friendlyname.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_init.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_item_decrypt_d2i.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_key_gen_utf8_ex.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_pack_p7encdata.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS5_PBE_keyivgen.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_get_octet_string.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_type_is_other.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS8_encrypt.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS8_pkey_add1_attr.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_get0_primary.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_set_DRBG_type.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_read_ASN1.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_write_ASN1.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_Calc_B.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_VBASE_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_create_verifier.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SRP_user_pwd_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_srp_password.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tmp_ecdh.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_certificate.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_group_to_name.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_async_callback.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_retry_verify.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/TS_RESP_CTX_new.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/TS_VERIFY_CTX_set_certs.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509V3_set_ctx.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_LOOKUP.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_add_cert.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_purpose.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_cmp.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_distinguishing_id.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_load_http.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_verify.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/b2i_PVK_bio_ex.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_RSAPrivateKey.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/fips_config.5:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/fips_module.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-cipher.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-digest.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-kdf.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-mac.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-pkey.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/life_cycle-rand.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/migration_guide.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-core.h.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-core_dispatch.h.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-core_names.h.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-env.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-format-options.1:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-glossary.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-namedisplay-options.1:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-passphrase-options.1:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-threads.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl-verification-options.1:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/property.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-asym_cipher.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-base.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-cipher.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-decoder.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-digest.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-encoder.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-kdf.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-kem.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-keyexch.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-keymgmt.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-mac.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-object.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-rand.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-signature.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider-storemgmt.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/provider.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/proxy-certificates.7:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/s2i_ASN1_IA5STRING.3:	revision 1.3
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_INTEGER_get_int64.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_TYPE_get.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ASYNC_WAIT_CTX_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ASYNC_start_job.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BF_encrypt.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_ADDR.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_ADDRINFO.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_connect.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_get_data.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_get_ex_new_index.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_meth_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_parse_hostserv.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_printf.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/BUF_MEM_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/CRYPTO_THREAD_run_once.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/CRYPTO_get_ex_new_index.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/CTLOG_STORE_get0_log_by_id.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/CTLOG_STORE_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/CTLOG_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/CT_POLICY_EVAL_CTX_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DEFINE_STACK_OF.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DES_random_key.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_get0_pqg.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_get_1024_160.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_meth_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_get0_pqg.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_meth_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/DTLSv1_listen.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ECDSA_SIG_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ECPKParameters_print.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_KEY_get_enc_flags.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ENGINE_add.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER_CTX_get_cipher_data.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER_meth_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD_meth_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_ASN1_METHOD.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_set_tls1_prf_md.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_asn1_get_count.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_get_default_digest_nid.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/MDC2_Init.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_REQUEST_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_cert_to_id.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_request_add1_nonce.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_resp_find_status.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_response_status.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OCSP_sendreq_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_LH_COMPFUNC.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_LH_stats.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_init_crypto.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_init_ssl.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_malloc.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_secure_malloc.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read_CMS.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_read_bio_PrivateKey.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_newpass.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS5_PBKDF2_HMAC.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/RC4_set_key.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/RIPEMD160_Init.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_get0_key.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_meth_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SCT_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SCT_print.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SCT_validate.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SHA256_Init.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_config.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_dane_enable.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_has_client_custom_ext.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set1_sigalgs.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_ct_validation_callback.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_ctlog_list_file.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_min_proto_version.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_security_level.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_split_send_fragment.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_use_srtp.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_cipher.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_hostname.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_id_context.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get0_peer.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get_compress_id.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get_protocol_version.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_has_ticket.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_print.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_set1_id.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_export_keying_material.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_extension_supported.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get0_peer_scts.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_all_async_fds.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_client_random.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_extms_support.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_shared_sigalgs.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set1_host.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_STRING.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_create_method.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/UI_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509V3_get_d2i.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_ALGOR_dup.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_CRL_get0_by_serial.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_EXTENSION_set_object.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_LOOKUP_hash_dir.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_get0_der.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_PUBKEY_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_SIG_get0.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_get0_param.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_new.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_ca.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_issued.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_digest.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_dup.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_notBefore.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_signature.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get0_uids.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_extension_flags.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_pubkey.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_serialNumber.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_subject_name.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_get_version.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_sign.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/X509v3_get_ext_by_NID.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_PKCS8PrivateKey_bio.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/i2d_re_X509_tbs.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/o2i_SCT_LIST.3:	revision 1.7
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_OBJECT_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_length.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_STRING_print_ex.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_generate_nconf.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_ctrl.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_base64.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_buffer.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_cipher.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_md.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_null.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_f_ssl.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_find_type.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_new_CMS.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_push.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_read.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_accept.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_bio.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_connect.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_fd.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_file.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_mem.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_null.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_s_socket.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_set_callback.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BIO_should_retry.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_BLINDING_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_CTX_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_CTX_start.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_add.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_add_word.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_bn2bin.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_cmp.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_copy.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_generate_prime.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_inverse.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_mul_montgomery.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_mod_mul_reciprocal.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_num_bytes.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_rand.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_set_bit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_swap.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/BN_zero.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_add0_cert.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_add1_recipient_cert.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_compress.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_decrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_encrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_final.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get0_RecipientInfos.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get0_SignerInfos.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get0_type.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_get1_ReceiptRequest.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_sign.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_sign_receipt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_uncompress.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_verify.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_verify_receipt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CONF_modules_free.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/CONF_modules_load_file.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_generate_key.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_generate_parameters.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_set_method.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DH_size.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_SIG_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_do_sign.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_dup_DH.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_generate_key.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_generate_parameters.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_set_method.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_sign.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/DSA_size.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_GET_LIB.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_clear_error.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_error_string.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_get_error.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_load_crypto_strings.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_load_strings.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_print_errors.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_put_error.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_remove_state.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ERR_set_mark.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_BytesToKey.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_DigestInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_DigestSignInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_DigestVerifyInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_EncryptInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_OpenInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_CTX_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_decrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_derive.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_encrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_keygen.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_print_private.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_set1_RSA.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_sign.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_verify.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SealInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_SignInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_VerifyInit.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/OBJ_nid2obj.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_Applink.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_config.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_load_builtin_modules.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/OpenSSL_add_all_algorithms.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_write_bio_CMS_stream.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_create.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS12_parse.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_decrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_encrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_sign.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_sign_add_signer.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/PKCS7_verify.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_add.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_bytes.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_cleanup.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_egd.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_load_file.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RAND_set_rand_method.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_blinding_on.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_check_key.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_generate_key.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_print.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_private_encrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_public_encrypt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_set_method.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_sign.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/RSA_size.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_read_CMS.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_read_PKCS7.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_write_CMS.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SMIME_write_PKCS7.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CIPHER_get_name.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_COMP_add_compression_method.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_add_extra_chain_cert.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_add_session.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_ctrl.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_flush_sessions.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_free.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_get_verify_mode.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_load_verify_locations.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sess_number.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sess_set_cache_size.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sess_set_get_cb.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_sessions.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cert_store.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cert_verify_callback.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cipher_list.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_client_cert_cb.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_default_passwd_cb.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_generate_session_id.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_info_callback.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_max_cert_list.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_mode.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_msg_callback.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_options.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_psk_client_callback.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_quiet_shutdown.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_session_cache_mode.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_session_id_context.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_ssl_version.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_timeout.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tmp_dh_callback.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_verify.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_use_certificate.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_use_psk_identity_hint.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_free.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_SESSION_get_time.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_accept.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_alert_type_string.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_clear.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_connect.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_do_handshake.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_free.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_SSL_CTX.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_ciphers.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_current_cipher.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_default_timeout.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_error.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_fd.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_cert_chain.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_certificate.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_psk_identity.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_rbio.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_session.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_verify_result.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_version.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_library_init.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_load_client_CA_file.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_pending.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_rstate_string.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_session_reused.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_bio.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_connect_state.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_fd.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_session.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_shutdown.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_set_verify_result.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_shutdown.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_state_string.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_want.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_write.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_get_index_by_NID.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_NAME_print_ex.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_new.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_SSL_SESSION.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_X509.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/des_modes.7:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/i2d_CMS_bio_stream.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/i2d_PKCS7_bio_stream.3:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl_CA.pl.1:	revision 1.23
	crypto/external/bsd/openssl/lib/libcrypto/man/ASN1_TIME_set.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_GFp_simple_method.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_GROUP_copy.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_GROUP_new.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_KEY_new.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_POINT_add.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/EC_POINT_new.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/HMAC.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/MD5.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_instrument_bus.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_new.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_set1_prefix.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_set_flags.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_CTX_set_ssl_ctx.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_cmd.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CONF_cmd_argv.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_add1_chain_cert.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_get0_param.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set1_curves.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set1_verify_cert_store.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_alpn_select_cb.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_cert_cb.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_use_serverinfo.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_check_chain.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_check_host.3:	revision 1.8
	crypto/external/bsd/openssl/lib/libcrypto/man/CMS_add1_signer.3:	revision 1.12
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_CIPHER-NULL.7:	revision 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_MD-NULL.7:	revision 1.2
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_EncodeInit.3:	revision 1.10
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_status_cb.3:	revision 1.10
	crypto/external/bsd/openssl/lib/libcrypto/man/d2i_PrivateKey.3:	revision 1.10
	crypto/external/bsd/openssl/lib/libcrypto/man/EVP_PKEY_verify_recover.3:	revision 1.18
	crypto/external/bsd/openssl/lib/libcrypto/man/OPENSSL_ia32cap.3:	revision 1.25
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_read_ahead.3:	revision 1.11
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_CTX_set_tlsext_ticket_key_cb.3:	revision 1.13
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_get_peer_tmp_key.3:	revision 1.5
	crypto/external/bsd/openssl/lib/libcrypto/man/SSL_read.3:	revision 1.24
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl_tsget.1:	revision 1.24
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_CTX_get_error.3:	revision 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_CTX_new.3:	revision 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3:	revision 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3:	revision 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3:	revision 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/X509_verify_cert.3:	revision 1.22
	crypto/external/bsd/openssl/lib/libcrypto/man/openssl.1:	revision 1.22

openssl(3): update to OpenSSL-3.0.12
@
text
@d133 1
a133 1
will be considered legacy and will continue to work.
a308 9
=head4 PKCS#12 KDF versus FIPS

Unlike in 1.x.y, the PKCS12KDF algorithm used when a PKCS#12 structure
is created with a MAC that does not work with the FIPS provider as the PKCS12KDF
is not a FIPS approvable mechanism.

See L<EVP_KDF-PKCS12KDF(7)>, L<PKCS12_create(3)>, L<openssl-pkcs12(1)>,
L<OSSL_PROVIDER-FIPS(7)>.

d644 1
a644 1
All functions listed below with a I<NAME> have a replacement function I<NAME_ex>
d1002 1
a1002 1
Before providers were added algorithms were overridden by changing the methods
d1551 1
a1551 1
See L<EVP_PKEY-EC(7)/Common EC parameters> which handles flags as separate
@


