diff options
Diffstat (limited to 'src/pki/commands/acert.c')
-rw-r--r-- | src/pki/commands/acert.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pki/commands/acert.c b/src/pki/commands/acert.c index 185aa40b4..03d90a103 100644 --- a/src/pki/commands/acert.c +++ b/src/pki/commands/acert.c @@ -166,6 +166,11 @@ static int acert() error = "issuer private key does not match issuer certificate"; goto end; } + if (private->get_type(private) == KEY_BLISS) + { + /* currently only SHA-512 is supported */ + digest = HASH_SHA512; + } if (hex) { |