Home
last modified time | relevance | path

Searched refs:AES_GCM_SALT_SIZE (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/drivers/crypto/nitrox/
H A Dnitrox_sym_ctx.h14 #define AES_GCM_SALT_SIZE 4 macro
78 uint8_t salt[AES_GCM_SALT_SIZE];
H A Dnitrox_sym_reqmgr.c671 if (unlikely(ctx->iv.length < AES_GCM_SALT_SIZE)) { in softreq_copy_salt()
677 if (!memcmp(ctx->salt, addr, AES_GCM_SALT_SIZE)) in softreq_copy_salt()
680 memcpy(ctx->salt, addr, AES_GCM_SALT_SIZE); in softreq_copy_salt()
681 memcpy(ctx->fctx.crypto.iv, addr, AES_GCM_SALT_SIZE); in softreq_copy_salt()
725 softreq_copy_iv(sr, AES_GCM_SALT_SIZE); in process_combined_data()