aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/crypto_native/crypto_native.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2024-01-11 17:37:46 +0000
committerMohammed HAWARI <momohawari@gmail.com>2024-01-12 17:37:42 +0000
commitda3771c25bc30fb15c67f36393d975c46d313b60 (patch)
tree3d6f28b39d1eaa6320c7402f319dd3b6c1ba914f /src/plugins/crypto_native/crypto_native.h
parent9caef2a3518ee9a453adbb748a9f4799a5fbb56b (diff)
crypto-native: add AES-CTR
Type: feature Change-Id: Iab84226043d8042a99a507767b75e9d4a89cc5c6 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/crypto_native/crypto_native.h')
-rw-r--r--src/plugins/crypto_native/crypto_native.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/crypto_native/crypto_native.h b/src/plugins/crypto_native/crypto_native.h
index 623070c19b7..c15b8cbd1da 100644
--- a/src/plugins/crypto_native/crypto_native.h
+++ b/src/plugins/crypto_native/crypto_native.h
@@ -32,9 +32,10 @@ extern crypto_native_main_t crypto_native_main;
#define foreach_crypto_native_march_variant \
_ (slm) _ (hsw) _ (skx) _ (icl) _ (adl) _ (neon)
-#define _(v) \
-clib_error_t __clib_weak *crypto_native_aes_cbc_init_##v (vlib_main_t * vm); \
-clib_error_t __clib_weak *crypto_native_aes_gcm_init_##v (vlib_main_t * vm); \
+#define _(v) \
+ clib_error_t __clib_weak *crypto_native_aes_cbc_init_##v (vlib_main_t *vm); \
+ clib_error_t __clib_weak *crypto_native_aes_ctr_init_##v (vlib_main_t *vm); \
+ clib_error_t __clib_weak *crypto_native_aes_gcm_init_##v (vlib_main_t *vm);
foreach_crypto_native_march_variant;
#undef _