20/06/2023 20:49, Akhil Goyal: > > AES-GCM provides both authenticated encryption and the ability to check > > the integrity and authentication of additional authenticated data (AAD) > > that is sent in the clear. [...] > Series applied to dpdk-next-crypto
This has to be added to avoid a compilation failure with MinGW: @@ -25,6 +25,8 @@ mlx5_crypto_dek_get_key(struct rte_crypto_sym_xform *xform, *key = xform->aead.key.data; *key_len = xform->aead.key.length; } else { + *key = NULL; + *key_len = 0; DRV_LOG(ERR, "Xform dek type not supported."); rte_errno = -EINVAL; return -1; I will squash it where appropriate.