From: Viktor Szakats Date: Thu, 5 Feb 2026 13:32:35 +0000 (+0100) Subject: mk-ca-bundle.pl: drop support for obsolete/insecure fingerprint algos X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14144a40642b62d2b2abaef71a61d5edc6a02705;p=thirdparty%2Fcurl.git mk-ca-bundle.pl: drop support for obsolete/insecure fingerprint algos MD5 and SHA1 fingerprints can no longer be included in the output when using the `-t` option. Closes #20527 --- diff --git a/scripts/mk-ca-bundle.pl b/scripts/mk-ca-bundle.pl index f210daf1e5..0f32cec7cf 100755 --- a/scripts/mk-ca-bundle.pl +++ b/scripts/mk-ca-bundle.pl @@ -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"