diff options
author | Matt Caswell <matt@openssl.org> | 2024-11-04 10:00:32 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2024-11-05 12:12:33 +0100 |
commit | d1669a14d129c9b12c8ef5ccd3545273e50aad0f (patch) | |
tree | 61b7b0ca1af112a563a40b81a5869f5665cd06aa /doc | |
parent | Document extensibility of -groups parameter via providers (diff) | |
download | openssl-d1669a14d129c9b12c8ef5ccd3545273e50aad0f.tar.xz openssl-d1669a14d129c9b12c8ef5ccd3545273e50aad0f.zip |
Fix the default_md example in the ca docs
We should not have an example showing the default_md as md5.
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25856)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man1/openssl-ca.pod.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man1/openssl-ca.pod.in b/doc/man1/openssl-ca.pod.in index addb9e9746..05fe63d4e3 100644 --- a/doc/man1/openssl-ca.pod.in +++ b/doc/man1/openssl-ca.pod.in @@ -723,7 +723,7 @@ A sample configuration file with the relevant sections for this command: default_days = 365 # how long to certify for default_crl_days= 30 # how long before next CRL - default_md = md5 # md to use + default_md = sha256 # md to use policy = policy_any # default policy email_in_dn = no # Don't add the email into cert DN |