From 0996ed0d5ad65b6419e3ce66a420199c3ed45ca9 Mon Sep 17 00:00:00 2001 From: Fiona Trahe Date: Tue, 10 Sep 2019 17:32:10 +0100 Subject: [PATCH] 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: 6a3c87bc6a6c ("crypto/qat: refactor capabilities infrastructure") Cc: stable@dpdk.org Signed-off-by: Fiona Trahe Acked-by: Arek Kusztal --- drivers/crypto/qat/qat_sym_capabilities.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/qat/qat_sym_capabilities.h b/drivers/crypto/qat/qat_sym_capabilities.h index 6df12b9441..a7fb6a0da9 100644 --- a/drivers/crypto/qat/qat_sym_capabilities.h +++ b/drivers/crypto/qat/qat_sym_capabilities.h @@ -145,8 +145,8 @@ .increment = 0 \ }, \ .digest_size = { \ - .min = 16, \ - .max = 16, \ + .min = 12, \ + .max = 12, \ .increment = 0 \ }, \ .aad_size = { 0 }, \ -- 2.20.1