aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2010-09-06 16:36:16 +0200
committerMartin Willi <martin@revosec.ch>2010-09-06 16:50:58 +0200
commita92a34809223bbf88d2d368a5990843c56508c54 (patch)
tree2cf3b90e3c492ad281264e9105ff7bce0969b92e /src
parenta03eebdf9396c70c99c5b1fd6eee33fddaecc856 (diff)
downloadstrongswan-a92a34809223bbf88d2d368a5990843c56508c54.tar.bz2
strongswan-a92a34809223bbf88d2d368a5990843c56508c54.tar.xz
Register missing AUTH_HMAC_SHA384 algorithm without truncation
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/plugins/hmac/hmac_plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstrongswan/plugins/hmac/hmac_plugin.c b/src/libstrongswan/plugins/hmac/hmac_plugin.c
index dd1ee5730..73df4dc6c 100644
--- a/src/libstrongswan/plugins/hmac/hmac_plugin.c
+++ b/src/libstrongswan/plugins/hmac/hmac_plugin.c
@@ -84,6 +84,8 @@ plugin_t *hmac_plugin_create()
(signer_constructor_t)hmac_signer_create);
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_384_192,
(signer_constructor_t)hmac_signer_create);
+ lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_384_384,
+ (signer_constructor_t)hmac_signer_create);
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_512_256,
(signer_constructor_t)hmac_signer_create);