diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2014-11-28 13:13:47 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2014-11-29 14:51:18 +0100 |
commit | b6bb32e658347ac150478959c0f15caab0fdea88 (patch) | |
tree | d1481682d60927c96d23bd0d11faac8e9b0f2a0f /src/pki/commands/self.c | |
parent | 43d92475998f85b977ca98dd8ac81fc630a19000 (diff) | |
download | strongswan-b6bb32e658347ac150478959c0f15caab0fdea88.tar.bz2 strongswan-b6bb32e658347ac150478959c0f15caab0fdea88.tar.xz |
Implemented full BLISS support for IKEv2 public key authentication and the pki tool
Diffstat (limited to 'src/pki/commands/self.c')
-rw-r--r-- | src/pki/commands/self.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pki/commands/self.c b/src/pki/commands/self.c index 813efb40f..a67115d9b 100644 --- a/src/pki/commands/self.c +++ b/src/pki/commands/self.c @@ -92,7 +92,6 @@ static int self() else if (streq(arg, "bliss")) { type = KEY_BLISS; - digest = HASH_SHA512; } else { @@ -263,6 +262,11 @@ static int self() break; } + if (type == KEY_BLISS) + { + /* currently only SHA-512 is supported */ + digest = HASH_SHA512; + } if (!dn) { error = "--dn is required"; |