Added a get_name() function to plugin_t, create_plugin_enumerator enumerates over plugin_t
This commit is contained in:
@@ -19,8 +19,6 @@
|
||||
#include "hmac_signer.h"
|
||||
#include "hmac_prf.h"
|
||||
|
||||
static const char *plugin_name = "hmac";
|
||||
|
||||
typedef struct private_hmac_plugin_t private_hmac_plugin_t;
|
||||
|
||||
/**
|
||||
@@ -34,6 +32,12 @@ struct private_hmac_plugin_t {
|
||||
hmac_plugin_t public;
|
||||
};
|
||||
|
||||
METHOD(plugin_t, get_name, char*,
|
||||
private_hmac_plugin_t *this)
|
||||
{
|
||||
return "hmac";
|
||||
}
|
||||
|
||||
METHOD(plugin_t, destroy, void,
|
||||
private_hmac_plugin_t *this)
|
||||
{
|
||||
@@ -55,6 +59,7 @@ plugin_t *hmac_plugin_create()
|
||||
INIT(this,
|
||||
.public = {
|
||||
.plugin = {
|
||||
.get_name = _get_name,
|
||||
.destroy = _destroy,
|
||||
},
|
||||
},
|
||||
@@ -64,24 +69,24 @@ plugin_t *hmac_plugin_create()
|
||||
if (hasher)
|
||||
{
|
||||
hasher->destroy(hasher);
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA1, plugin_name,
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA1, get_name(this),
|
||||
(prf_constructor_t)hmac_prf_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_96, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_96, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_128, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_128, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_160, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA1_160, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
}
|
||||
hasher = lib->crypto->create_hasher(lib->crypto, HASH_SHA256);
|
||||
if (hasher)
|
||||
{
|
||||
hasher->destroy(hasher);
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA2_256, plugin_name,
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA2_256, get_name(this),
|
||||
(prf_constructor_t)hmac_prf_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_256_128, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_256_128, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_256_256, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_256_256, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
|
||||
}
|
||||
@@ -89,31 +94,31 @@ plugin_t *hmac_plugin_create()
|
||||
if (hasher)
|
||||
{
|
||||
hasher->destroy(hasher);
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_MD5, plugin_name,
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_MD5, get_name(this),
|
||||
(prf_constructor_t)hmac_prf_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_MD5_96, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_MD5_96, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_MD5_128, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_MD5_128, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
}
|
||||
hasher = lib->crypto->create_hasher(lib->crypto, HASH_SHA384);
|
||||
if (hasher)
|
||||
{
|
||||
hasher->destroy(hasher);
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA2_384, plugin_name,
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA2_384, get_name(this),
|
||||
(prf_constructor_t)hmac_prf_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_384_192, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_384_192, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_384_384, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_384_384, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
}
|
||||
hasher = lib->crypto->create_hasher(lib->crypto, HASH_SHA512);
|
||||
if (hasher)
|
||||
{
|
||||
hasher->destroy(hasher);
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA2_512, plugin_name,
|
||||
lib->crypto->add_prf(lib->crypto, PRF_HMAC_SHA2_512, get_name(this),
|
||||
(prf_constructor_t)hmac_prf_create);
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_512_256, plugin_name,
|
||||
lib->crypto->add_signer(lib->crypto, AUTH_HMAC_SHA2_512_256, get_name(this),
|
||||
(signer_constructor_t)hmac_signer_create);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user