crypto/qat: fix digest length in XCBC capability
Digest length in RTE_CRYPTO_AUTH_AES_XCBC_MAC capability
was incorrectly marked 16 bytes, should be 12.
Fixes: 6a3c87bc6a
("crypto/qat: refactor capabilities infrastructure")
Cc: stable@dpdk.org
Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
Acked-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
This commit is contained in:
parent
13209e9be7
commit
0996ed0d5a
@ -145,8 +145,8 @@
|
||||
.increment = 0 \
|
||||
}, \
|
||||
.digest_size = { \
|
||||
.min = 16, \
|
||||
.max = 16, \
|
||||
.min = 12, \
|
||||
.max = 12, \
|
||||
.increment = 0 \
|
||||
}, \
|
||||
.aad_size = { 0 }, \
|
||||
|
Loading…
Reference in New Issue
Block a user