[dpdk-dev] [PATCH v1] crypto/aesni_mb: fix incorrect clearing of security session

2020-10-06 Thread David Coyle
When destroying a security session, the AESNI-MB PMD attempted to clear the private aesni_mb session object to remove any key material. However, the function aesni_mb_pmd_sec_sess_destroy() cleared the security session object instead of the private session object. This patch fixes this issue by no

Re: [dpdk-dev] [PATCH v1] crypto/aesni_mb: fix incorrect clearing of security session

2020-10-06 Thread De Lara Guarch, Pablo
Hi David, > -Original Message- > From: Coyle, David > Sent: Tuesday, October 6, 2020 10:42 AM > To: De Lara Guarch, Pablo ; Doherty, Declan > > Cc: dev@dpdk.org; akhil.go...@nxp.com; Coyle, David > > Subject: [PATCH v1] crypto/aesni_mb: fix incorrect clearing of security > session >

Re: [dpdk-dev] [PATCH v1] crypto/aesni_mb: fix incorrect clearing of security session

2020-10-06 Thread Coyle, David
Hi Pablo > > > > When destroying a security session, the AESNI-MB PMD attempted to > > clear the private aesni_mb session object to remove any key material. > > However, the function aesni_mb_pmd_sec_sess_destroy() cleared the > > security session object instead of the private session object. > >