examples/fips_validation: fix cipher length for AES-GCM
Cipher length need to be updated in case of AES-GCM decryption. Fixes: 4aaad2995e13 ("examples/fips_validation: support GCM parsing") Cc: stable@dpdk.org Signed-off-by: Archana Muniganti <marchana@marvell.com> Signed-off-by: Sucharitha Sarananaga <ssarananaga@marvell.com> Acked-by: Anoob Joseph <anoobj@marvell.com>
This commit is contained in:
parent
fb9f56f3e3
commit
07f5e45532
@ -19,6 +19,7 @@
|
||||
#define PTLEN_STR "PTlen = "
|
||||
#define AADLEN_STR "AADlen = "
|
||||
#define TAGLEN_STR "Taglen = "
|
||||
#define CTLEN_STR "PTlen = "
|
||||
|
||||
#define COUNT_STR "Count = "
|
||||
#define KEY_STR "Key = "
|
||||
@ -46,6 +47,7 @@ struct fips_test_callback gcm_interim_vectors[] = {
|
||||
{KEYLEN_STR, parser_read_uint32_bit_val, &vec.aead.key},
|
||||
{IVLEN_STR, parser_read_uint32_bit_val, &vec.iv},
|
||||
{PTLEN_STR, parser_read_uint32_bit_val, &vec.pt},
|
||||
{CTLEN_STR, parser_read_uint32_bit_val, &vec.ct},
|
||||
{AADLEN_STR, parser_read_uint32_bit_val, &vec.aead.aad},
|
||||
{TAGLEN_STR, parser_read_uint32_bit_val,
|
||||
&vec.aead.digest},
|
||||
|
Loading…
x
Reference in New Issue
Block a user