mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-03 21:42:14 +07:00
crypto: mediatek - Use GCM IV size constant
This patch replace GCM IV size value by their constant name. Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
a59851d2f2
commit
07b83f437d
@ -13,6 +13,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <crypto/aes.h>
|
#include <crypto/aes.h>
|
||||||
|
#include <crypto/gcm.h>
|
||||||
#include "mtk-platform.h"
|
#include "mtk-platform.h"
|
||||||
|
|
||||||
#define AES_QUEUE_SIZE 512
|
#define AES_QUEUE_SIZE 512
|
||||||
@ -1103,7 +1104,7 @@ static struct aead_alg aes_gcm_alg = {
|
|||||||
.decrypt = mtk_aes_gcm_decrypt,
|
.decrypt = mtk_aes_gcm_decrypt,
|
||||||
.init = mtk_aes_gcm_init,
|
.init = mtk_aes_gcm_init,
|
||||||
.exit = mtk_aes_gcm_exit,
|
.exit = mtk_aes_gcm_exit,
|
||||||
.ivsize = 12,
|
.ivsize = GCM_AES_IV_SIZE,
|
||||||
.maxauthsize = AES_BLOCK_SIZE,
|
.maxauthsize = AES_BLOCK_SIZE,
|
||||||
|
|
||||||
.base = {
|
.base = {
|
||||||
|
Loading…
Reference in New Issue
Block a user