summaryrefslogtreecommitdiffstats
path: root/providers/implementations/ciphers/cipher_aria_gcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations/ciphers/cipher_aria_gcm.c')
-rw-r--r--providers/implementations/ciphers/cipher_aria_gcm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/providers/implementations/ciphers/cipher_aria_gcm.c b/providers/implementations/ciphers/cipher_aria_gcm.c
index c2fe7ec185..b412bd3202 100644
--- a/providers/implementations/ciphers/cipher_aria_gcm.c
+++ b/providers/implementations/ciphers/cipher_aria_gcm.c
@@ -13,8 +13,6 @@
#include "prov/implementations.h"
#include "prov/providercommon.h"
-#define ARIA_GCM_IV_MIN_SIZE (32 / 8) /* size in bytes */
-
static void *aria_gcm_newctx(void *provctx, size_t keybits)
{
PROV_ARIA_GCM_CTX *ctx;
@@ -25,7 +23,7 @@ static void *aria_gcm_newctx(void *provctx, size_t keybits)
ctx = OPENSSL_zalloc(sizeof(*ctx));
if (ctx != NULL)
ossl_gcm_initctx(provctx, &ctx->base, keybits,
- ossl_prov_aria_hw_gcm(keybits), ARIA_GCM_IV_MIN_SIZE);
+ ossl_prov_aria_hw_gcm(keybits));
return ctx;
}