aboutsummaryrefslogtreecommitdiffstats
path: root/src/pki/commands/req.c
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2012-07-17 17:31:02 +0200
committerMartin Willi <martin@revosec.ch>2012-07-17 17:32:05 +0200
commitc63fb853e88ff0dd6dca07ecf61009e736a28eff (patch)
treea40f4d44238494ea85db2c6cc81ba37dd9947196 /src/pki/commands/req.c
parent6719889e0a83dd462a39ea288e9a27707fd50b16 (diff)
downloadstrongswan-c63fb853e88ff0dd6dca07ecf61009e736a28eff.tar.bz2
strongswan-c63fb853e88ff0dd6dca07ecf61009e736a28eff.tar.xz
Use centralized hasher names in pki utility
Diffstat (limited to 'src/pki/commands/req.c')
-rw-r--r--src/pki/commands/req.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pki/commands/req.c b/src/pki/commands/req.c
index 087a97b3e..d050c7032 100644
--- a/src/pki/commands/req.c
+++ b/src/pki/commands/req.c
@@ -63,8 +63,8 @@ static int req()
}
continue;
case 'g':
- digest = get_digest(arg);
- if (digest == HASH_UNKNOWN)
+ digest = enum_from_name(hash_algorithm_short_names, arg);
+ if (digest == -1)
{
error = "invalid --digest type";
goto usage;