]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
mk-ca-bundle.pl: default to SHA256 fingerprints with `-t` option
authorViktor Szakats <commit@vsz.me>
Tue, 4 Nov 2025 11:55:25 +0000 (12:55 +0100)
committerViktor Szakats <commit@vsz.me>
Sat, 15 Nov 2025 02:06:33 +0000 (03:06 +0100)
Replacing previous default: MD5.

You can use the existing `-s` option to override the default.

Also bump version to 1.30.

Closes #19359

scripts/mk-ca-bundle.pl

index af31ccd10e8fb8909502286cc93a6345ba351e0e..d4b5418e0c7b22290d34681c582ffa6553be6931 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.29';
+my $version = '1.30';
 
 $opt_w = 76; # default base64 encoded lines length
 
@@ -100,7 +100,7 @@ my @valid_mozilla_trust_levels = (
                             # for delegates (i.e. it is not a CA).
 );
 
-my $default_signature_algorithms = $opt_s = "MD5";
+my $default_signature_algorithms = $opt_s = "SHA256";
 
 my @valid_signature_algorithms = (
     "MD5",