diff options
Diffstat (limited to 'src/plugins/crypto_native/crypto_native.h')
-rw-r--r-- | src/plugins/crypto_native/crypto_native.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/crypto_native/crypto_native.h b/src/plugins/crypto_native/crypto_native.h index f1153737dea..5b774b302de 100644 --- a/src/plugins/crypto_native/crypto_native.h +++ b/src/plugins/crypto_native/crypto_native.h @@ -23,7 +23,11 @@ typedef void *(crypto_native_key_fn_t) (vnet_crypto_key_t * key); typedef struct { CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); +#if __VAES__ + u8x16 cbc_iv[16]; +#else u8x16 cbc_iv[4]; +#endif } crypto_native_per_thread_data_t; typedef struct |