diff options
author | Antoine Tenart <antoine.tenart@bootlin.com> | 2018-05-29 14:13:47 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-06-22 23:03:03 +0800 |
commit | 0de54fb100e9b8adc9df2d896b911dda2dee0a49 (patch) | |
tree | ea1f27cbb862e3f56e80d33bb2fc0403b6fcb6b9 /drivers/crypto/inside-secure/safexcel.c | |
parent | b460edb6230ac2877b0d176b9122736fed6f3c6e (diff) | |
download | linux-0de54fb100e9b8adc9df2d896b911dda2dee0a49.tar.bz2 |
crypto: inside-secure - hmac(sha512) support
This patch adds the hmac(sha512) algorithm support to the Inside Secure
SafeXcel driver.
Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/inside-secure/safexcel.c')
-rw-r--r-- | drivers/crypto/inside-secure/safexcel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c index 126def0b4450..b3c5f3c8e208 100644 --- a/drivers/crypto/inside-secure/safexcel.c +++ b/drivers/crypto/inside-secure/safexcel.c @@ -794,6 +794,7 @@ static struct safexcel_alg_template *safexcel_algs[] = { &safexcel_alg_hmac_sha1, &safexcel_alg_hmac_sha224, &safexcel_alg_hmac_sha256, + &safexcel_alg_hmac_sha512, &safexcel_alg_authenc_hmac_sha1_cbc_aes, &safexcel_alg_authenc_hmac_sha224_cbc_aes, &safexcel_alg_authenc_hmac_sha256_cbc_aes, |