|
@@ -1697,6 +1697,7 @@ static struct caam_alg_template driver_algs[] = {
|
|
|
.name = "authenc(hmac(sha224),cbc(aes))",
|
|
|
.driver_name = "authenc-hmac-sha224-cbc-aes-caam",
|
|
|
.blocksize = AES_BLOCK_SIZE,
|
|
|
+ .type = CRYPTO_ALG_TYPE_AEAD,
|
|
|
.template_aead = {
|
|
|
.setkey = aead_setkey,
|
|
|
.setauthsize = aead_setauthsize,
|
|
@@ -1736,6 +1737,7 @@ static struct caam_alg_template driver_algs[] = {
|
|
|
.name = "authenc(hmac(sha384),cbc(aes))",
|
|
|
.driver_name = "authenc-hmac-sha384-cbc-aes-caam",
|
|
|
.blocksize = AES_BLOCK_SIZE,
|
|
|
+ .type = CRYPTO_ALG_TYPE_AEAD,
|
|
|
.template_aead = {
|
|
|
.setkey = aead_setkey,
|
|
|
.setauthsize = aead_setauthsize,
|
|
@@ -1814,6 +1816,7 @@ static struct caam_alg_template driver_algs[] = {
|
|
|
.name = "authenc(hmac(sha224),cbc(des3_ede))",
|
|
|
.driver_name = "authenc-hmac-sha224-cbc-des3_ede-caam",
|
|
|
.blocksize = DES3_EDE_BLOCK_SIZE,
|
|
|
+ .type = CRYPTO_ALG_TYPE_AEAD,
|
|
|
.template_aead = {
|
|
|
.setkey = aead_setkey,
|
|
|
.setauthsize = aead_setauthsize,
|
|
@@ -1853,6 +1856,7 @@ static struct caam_alg_template driver_algs[] = {
|
|
|
.name = "authenc(hmac(sha384),cbc(des3_ede))",
|
|
|
.driver_name = "authenc-hmac-sha384-cbc-des3_ede-caam",
|
|
|
.blocksize = DES3_EDE_BLOCK_SIZE,
|
|
|
+ .type = CRYPTO_ALG_TYPE_AEAD,
|
|
|
.template_aead = {
|
|
|
.setkey = aead_setkey,
|
|
|
.setauthsize = aead_setauthsize,
|
|
@@ -1930,6 +1934,7 @@ static struct caam_alg_template driver_algs[] = {
|
|
|
.name = "authenc(hmac(sha224),cbc(des))",
|
|
|
.driver_name = "authenc-hmac-sha224-cbc-des-caam",
|
|
|
.blocksize = DES_BLOCK_SIZE,
|
|
|
+ .type = CRYPTO_ALG_TYPE_AEAD,
|
|
|
.template_aead = {
|
|
|
.setkey = aead_setkey,
|
|
|
.setauthsize = aead_setauthsize,
|
|
@@ -1969,6 +1974,7 @@ static struct caam_alg_template driver_algs[] = {
|
|
|
.name = "authenc(hmac(sha384),cbc(des))",
|
|
|
.driver_name = "authenc-hmac-sha384-cbc-des-caam",
|
|
|
.blocksize = DES_BLOCK_SIZE,
|
|
|
+ .type = CRYPTO_ALG_TYPE_AEAD,
|
|
|
.template_aead = {
|
|
|
.setkey = aead_setkey,
|
|
|
.setauthsize = aead_setauthsize,
|