This patch fixes the increment field of the AES-XTS cipher key size. Fixes: 7d5ef3bb32cd ("crypto/qat: support XTS")
Cc: sta...@dpdk.org Signed-off-by: Adam Dybkowski <adamx.dybkow...@intel.com> --- drivers/crypto/qat/qat_sym_capabilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/qat/qat_sym_capabilities.h b/drivers/crypto/qat/qat_sym_capabilities.h index ff691ce35..d426d9ac2 100644 --- a/drivers/crypto/qat/qat_sym_capabilities.h +++ b/drivers/crypto/qat/qat_sym_capabilities.h @@ -419,7 +419,7 @@ .key_size = { \ .min = 32, \ .max = 64, \ - .increment = 0 \ + .increment = 32 \ }, \ .iv_size = { \ .min = 16, \ -- 2.25.1