mk-ca-bundle.pl: default to SHA256 fingerprints with -t option

Replacing previous default: MD5.

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

Also bump version to 1.30.

Closes #19359
This commit is contained in:
Viktor Szakats
2025-11-04 12:55:25 +01:00
parent 7bb59a7dc7
commit 8a968095df

View File

@@ -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",