diff options
author | Rich Salz <rsalz@akamai.com> | 2021-05-25 16:28:49 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-05-28 11:14:46 +0200 |
commit | 3e3ad3c54855dd534437871a0c78858de5e3d246 (patch) | |
tree | 1d1264ae5d07caecefec35a26e3d751f27918390 /README-PROVIDERS.md | |
parent | Fix memory leak in OSSL_CMP_CTX (diff) | |
download | openssl-3e3ad3c54855dd534437871a0c78858de5e3d246.tar.xz openssl-3e3ad3c54855dd534437871a0c78858de5e3d246.zip |
Fix issues found by md-nits
Fixes #15460
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15461)
Diffstat (limited to 'README-PROVIDERS.md')
-rw-r--r-- | README-PROVIDERS.md | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/README-PROVIDERS.md b/README-PROVIDERS.md index 5092d039f3..33533f671c 100644 --- a/README-PROVIDERS.md +++ b/README-PROVIDERS.md @@ -9,7 +9,6 @@ Providers - [The Null Provider](#the-null-provider) - [Loading Providers](#loading-providers) - Standard Providers ================== @@ -23,7 +22,6 @@ manual page. [provider(7)]: https://www.openssl.org/docs/manmaster/man7/provider.html - The Default Provider -------------------- @@ -83,11 +81,9 @@ automatically loaded, the null provider can be loaded instead. This can be useful if you are using non-default library contexts and want to ensure that the default library context is never used unintentionally. - Loading Providers ================= - Providers to be loaded can be specified in the OpenSSL config file. See the [config(5)] manual page for information about how to configure providers via the config file, and how to automatically activate them. @@ -112,14 +108,12 @@ the legacy and the default provider in the default library context. [legacy_sect] activate = 1 - It is also possible to load providers programmatically. For example you can load the legacy provider into the default library context as shown below. Note that once you have explicitly loaded a provider into the library context the default provider will no longer be automatically loaded. Therefore you will often also want to explicitly load the default provider, as is done here: - #include <stdio.h> #include <stdlib.h> |