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:
Fiona Trahe 2019-09-10 17:32:10 +01:00 committed by Akhil Goyal
parent 13209e9be7
commit 0996ed0d5a

View File

@ -145,8 +145,8 @@
.increment = 0 \
}, \
.digest_size = { \
.min = 16, \
.max = 16, \
.min = 12, \
.max = 12, \
.increment = 0 \
}, \
.aad_size = { 0 }, \