From 4f9b5de802c1a3ecced459326f9cc97411ac62dc Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Thu, 6 Jul 2023 17:03:57 -0400 Subject: [PATCH] File gating --- wolfcrypt/src/port/aria/aria-cryptocb.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wolfcrypt/src/port/aria/aria-cryptocb.c b/wolfcrypt/src/port/aria/aria-cryptocb.c index 32fe3c97c..456c2331b 100644 --- a/wolfcrypt/src/port/aria/aria-cryptocb.c +++ b/wolfcrypt/src/port/aria/aria-cryptocb.c @@ -37,6 +37,8 @@ size and a key size of 128, 192, or 256 bits. #include #include +#ifdef HAVE_ARIA + int wc_AriaInit(void) { MC_RV rv = MC_OK; @@ -587,3 +589,5 @@ int wc_AriaDerive(ecc_key* private_key, ecc_key* public_key, byte* out, word32* return ret; } #endif /* WOLF_CRYPTO_CB */ + +#endif /* HAVE_ARIA */