diff options
author | Péter Dimitrov <[email protected]> | 2018-10-16 13:39:19 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-10-16 13:39:19 +0200 |
commit | c61ce5d231a2c40257f303017d67324f1582b901 (patch) | |
tree | 578972c90aeec4c4a50d7199408d1e50be6466fc /lib/eldap | |
parent | 04b6f35a2b270d56896f443241cffa682dfde0f7 (diff) | |
parent | 5b472d1984e99227f7f72fda25ee98e1f9e19d02 (diff) | |
download | otp-c61ce5d231a2c40257f303017d67324f1582b901.tar.gz otp-c61ce5d231a2c40257f303017d67324f1582b901.tar.bz2 otp-c61ce5d231a2c40257f303017d67324f1582b901.zip |
Merge pull request #1970 from peterdmv/ssl/signature_algorithms/OTP-15248
Implement Signature Algorithms (TLS 1.3)
Diffstat (limited to 'lib/eldap')
-rw-r--r-- | lib/eldap/test/make_certs.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/eldap/test/make_certs.erl b/lib/eldap/test/make_certs.erl index cfa43289e1..e8a13ae113 100644 --- a/lib/eldap/test/make_certs.erl +++ b/lib/eldap/test/make_certs.erl @@ -348,7 +348,7 @@ req_cnf(C) -> "default_bits = ", integer_to_list(C#config.default_bits), "\n" "RANDFILE = $ROOTDIR/RAND\n" "encrypt_key = no\n" - "default_md = md5\n" + "default_md = sha1\n" "#string_mask = pkix\n" "x509_extensions = ca_ext\n" "prompt = no\n" @@ -394,7 +394,7 @@ ca_cnf(C) -> ["crl_extensions = crl_ext\n" || C#config.v2_crls], "unique_subject = no\n" "default_days = 3600\n" - "default_md = md5\n" + "default_md = sha1\n" "preserve = no\n" "policy = policy_match\n" "\n" |