diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-05-06 13:51:50 +0200 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-05-15 20:20:08 +0200 |
commit | 6d382c74b375f1f8c44f04ec3de95ff781598a3b (patch) | |
tree | 4991b57879da3810fbf912c3d169232755380432 /doc/man1/openssl-s_server.pod.in | |
parent | Nit-fix: remove whitespace in doc/man3/EVP_PKEY_fromdata.pod causing warning (diff) | |
download | openssl-6d382c74b375f1f8c44f04ec3de95ff781598a3b.tar.xz openssl-6d382c74b375f1f8c44f04ec3de95ff781598a3b.zip |
Use OSSL_STORE for load_{,pub}key() and load_cert() in apps/lib/apps.c
This also adds the more flexible and general load_key_cert_crl()
as well as helper functions get_passwd(), cleanse(), and clear_free()
to be used also in apps/cmp.c etc.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
(Merged from https://github.com/openssl/openssl/pull/11755)
Diffstat (limited to 'doc/man1/openssl-s_server.pod.in')
-rw-r--r-- | doc/man1/openssl-s_server.pod.in | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/doc/man1/openssl-s_server.pod.in b/doc/man1/openssl-s_server.pod.in index c9f4bfc11b..8e5da51c40 100644 --- a/doc/man1/openssl-s_server.pod.in +++ b/doc/man1/openssl-s_server.pod.in @@ -20,19 +20,19 @@ B<openssl> B<s_server> [B<-Verify> I<int>] [B<-cert> I<infile>] [B<-cert2> I<infile>] -[B<-certform> B<DER>|B<PEM>] +[B<-certform> B<DER>|B<PEM>|B<P12>] [B<-cert_chain> I<infile>] [B<-build_chain>] [B<-serverinfo> I<val>] [B<-key> I<infile>] [B<-key2> I<infile>] -[B<-keyform> B<DER>|B<PEM>|B<ENGINE>] +[B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>] [B<-pass> I<val>] [B<-dcert> I<infile>] -[B<-dcertform> B<DER>|B<PEM>] +[B<-dcertform> B<DER>|B<PEM>|B<P12>] [B<-dcert_chain> I<infile>] [B<-dkey> I<infile>] -[B<-dkeyform> B<DER>|B<PEM>|B<ENGINE>] +[B<-dkeyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>] [B<-dpass> I<val>] [B<-nbio_test>] [B<-crlf>] @@ -220,10 +220,10 @@ certificate and some require a certificate with a certain public key type: for example the DSS cipher suites require a certificate containing a DSS (DSA) key. If not specified then the filename F<server.pem> will be used. -=item B<-certform> B<DER>|B<PEM> +=item B<-certform> B<DER>|B<PEM>|B<P12> -The server certificate file format; the default is B<PEM>. -See L<openssl(1)/Format Options> for details. +The server certificate file format. +This option has no effect and is retained for backward compatibility only. =item B<-cert_chain> @@ -248,9 +248,10 @@ ServerHello extension will be returned. The private key to use. If not specified then the certificate file will be used. -=item B<-keyform> B<DER>|B<PEM>|B<ENGINE> +=item B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE> The key format; the default is B<PEM>. +The only value with effect is B<ENGINE>; all others have become obsolete. See L<openssl(1)/Format Options> for details. =item B<-pass> I<val> @@ -276,14 +277,15 @@ A file containing untrusted certificates to use when attempting to build the server certificate chain when a certificate specified via the B<-dcert> option is in use. -=item B<-dcertform> B<DER>|B<PEM> +=item B<-dcertform> B<DER>|B<PEM>|B<P12> -The format of the additional certificate file; the default is B<PEM>. -See L<openssl(1)/Format Options>. +The format of the additional certificate file. +This option has no effect and is retained for backward compatibility only. -=item B<-dkeyform> B<DER>|B<PEM>|B<ENGINE> +=item B<-dkeyform> B<DER>|B<PEM>|B<P12>|B<ENGINE> The format of the additional private key; the default is B<PEM>. +The only value with effect is B<ENGINE>; all others have become obsolete. See L<openssl(1)/Format Options>. =item B<-dpass> I<val> @@ -822,6 +824,12 @@ The -no_alt_chains option was added in OpenSSL 1.1.0. The -allow-no-dhe-kex and -prioritize_chacha options were added in OpenSSL 1.1.1. +All B<-keyform> and B<-dkeyform> values except B<ENGINE> +have become obsolete in OpenSSL 3.0.0 and have no effect. + +The B<-certform> and B<-dcertform> options have become obsolete in OpenSSL 3.0.0 +and have no effect. + =head1 COPYRIGHT Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved. |