Re: [dpdk-dev] [PATCH] crypto/aesni_gcm: remove unneeded J0 calculation

2018-09-26 Thread Akhil Goyal
On 8/14/2018 6:23 AM, Pablo de Lara wrote: When IV size is 12, padding to 16 bytes is required and the LSB must be set to 1, according to the spec. However, the Multi-buffer library is already doing this, so it is not necessary to do it in the PMD. Signed-off-by: Pablo de Lara --- Applied

Re: [dpdk-dev] [PATCH] crypto/aesni_gcm: remove unneeded J0 calculation

2018-08-24 Thread Kovacevic, Marko
> When IV size is 12, padding to 16 bytes is required and the LSB must be set to > 1, according to the spec. > However, the Multi-buffer library is already doing this, so it is not > necessary > to do it in the PMD. > > Signed-off-by: Pablo de Lara > --- > drivers/crypto/aesni_gcm/aesni_gcm_pmd

[dpdk-dev] [PATCH] crypto/aesni_gcm: remove unneeded J0 calculation

2018-08-14 Thread Pablo de Lara
When IV size is 12, padding to 16 bytes is required and the LSB must be set to 1, according to the spec. However, the Multi-buffer library is already doing this, so it is not necessary to do it in the PMD. Signed-off-by: Pablo de Lara --- drivers/crypto/aesni_gcm/aesni_gcm_pmd.c | 9 - 1