]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
mk-ca-bundle.pl: drop support for obsolete/insecure fingerprint algos
authorViktor Szakats <commit@vsz.me>
Thu, 5 Feb 2026 13:32:35 +0000 (14:32 +0100)
committerViktor Szakats <commit@vsz.me>
Thu, 5 Feb 2026 14:22:01 +0000 (15:22 +0100)
MD5 and SHA1 fingerprints can no longer be included in the output when
using the `-t` option.

Closes #20527

scripts/mk-ca-bundle.pl

index f210daf1e5b49bfd4d6b1f5a15f6686a2fc790f6..0f32cec7cf5fa24b5b1af69002b2b1fb222bd553 100755 (executable)
@@ -60,7 +60,7 @@ $opt_d = 'release';
 # If the OpenSSL commandline is not in search path you can configure it here!
 my $openssl = 'openssl';
 
-my $version = '1.30';
+my $version = '1.31';
 
 $opt_w = 76; # default base64 encoded lines length
 
@@ -103,8 +103,6 @@ my @valid_mozilla_trust_levels = (
 my $default_signature_algorithms = $opt_s = "SHA256";
 
 my @valid_signature_algorithms = (
-    "MD5",
-    "SHA1",
     "SHA256",
     "SHA384",
     "SHA512"