register the already implemented AUTH_HMAC_SHA1_160 algorithm

This commit is contained in:
Martin Willi 2009-05-28 14:57:59 +02:00
parent 435e23e647
commit 178bf4c5e9
1 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,8 @@ plugin_t *plugin_create()
(signer_constructor_t)hmac_signer_create);
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_128,
(signer_constructor_t)hmac_signer_create);
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_160,
(signer_constructor_t)hmac_signer_create);
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_256_128,
(signer_constructor_t)hmac_signer_create);
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_MD5_96,