crypto/mvsam: support HMAC SHA224
Add support for the HMAC SHA224 authentication algorithm. Signed-off-by: Tomasz Duszynski <tdu@semihalf.com> Reviewed-by: Natalie Samsonov <nsamsono@marvell.com>
This commit is contained in:
parent
2c22aa4f8f
commit
a84226fc05
@ -113,6 +113,9 @@ struct auth_params_mapping auth_map[RTE_CRYPTO_AUTH_LIST_END] = {
|
||||
[RTE_CRYPTO_AUTH_SHA1] = {
|
||||
.supported = ALGO_SUPPORTED,
|
||||
.auth_alg = SAM_AUTH_HASH_SHA1 },
|
||||
[RTE_CRYPTO_AUTH_SHA224_HMAC] = {
|
||||
.supported = ALGO_SUPPORTED,
|
||||
.auth_alg = SAM_AUTH_HMAC_SHA2_224 },
|
||||
[RTE_CRYPTO_AUTH_SHA224] = {
|
||||
.supported = ALGO_SUPPORTED,
|
||||
.auth_alg = SAM_AUTH_HASH_SHA2_224 },
|
||||
|
@ -97,6 +97,27 @@ static const struct rte_cryptodev_capabilities
|
||||
}, }
|
||||
}, }
|
||||
},
|
||||
{
|
||||
/* SHA224 HMAC */
|
||||
.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,
|
||||
{.sym = {
|
||||
.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,
|
||||
{.auth = {
|
||||
.algo = RTE_CRYPTO_AUTH_SHA224_HMAC,
|
||||
.block_size = 64,
|
||||
.key_size = {
|
||||
.min = 1,
|
||||
.max = 64,
|
||||
.increment = 1
|
||||
},
|
||||
.digest_size = {
|
||||
.min = 28,
|
||||
.max = 28,
|
||||
.increment = 0
|
||||
},
|
||||
}, }
|
||||
}, }
|
||||
},
|
||||
{ /* SHA224 */
|
||||
.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,
|
||||
{.sym = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user