From: Pablo de Lara Date: Tue, 1 Aug 2017 00:33:36 +0000 (+0100) Subject: app/crypto-perf: fix IV allocation for AEAD X-Git-Tag: spdx-start~2235 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b27074cc949870a66b107d1b98192c39affee0f6;hp=b27074cc949870a66b107d1b98192c39affee0f6;p=dpdk.git app/crypto-perf: fix IV allocation for AEAD Memory is reserved after each crypto operation for the necessary IV(s), which could be for cipher, authentication or AEAD algorithms. However, for AEAD algorithms (such as AES-GCM), this memory was not being reserved, leading to potential memory overflow. Fixes: 8a5b494a7f99 ("app/test-crypto-perf: add AEAD parameters") Signed-off-by: Pablo de Lara ---