crypto/qat: fix AES CMAC mininum digest size

AES-CMAC is used in 3gpp specifications hence it is needed
to support 4 byte digest.

Fixes: 91c1daa4e1 ("crypto/qat: support AES-CMAC")
Cc: stable@dpdk.org

Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
This commit is contained in:
Arek Kusztal 2019-10-22 16:22:25 +02:00 committed by Akhil Goyal
parent b480c5fd54
commit a7f8087bbd

View File

@ -167,7 +167,7 @@
.increment = 0 \
}, \
.digest_size = { \
.min = 12, \
.min = 4, \
.max = 16, \
.increment = 4 \
} \