Re: [dpdk-dev] [PATCH] ipsec-secgw: fix AES-CTR block size in legacy mode

2019-03-19 Thread Akhil Goyal
On 3/19/2019 7:15 PM, Akhil Goyal wrote: > > On 3/5/2019 8:10 PM, Fan Zhang wrote: >> This patch fixes the incorrect block size for AES-CTR in >> legacy mode. Originally, wrong block size will cause >> esp_inbound() drop AES-CTR encrypted packets if the payload >> sizes not equal to multiple time

Re: [dpdk-dev] [PATCH] ipsec-secgw: fix AES-CTR block size in legacy mode

2019-03-19 Thread Akhil Goyal
On 3/5/2019 8:10 PM, Fan Zhang wrote: > This patch fixes the incorrect block size for AES-CTR in > legacy mode. Originally, wrong block size will cause > esp_inbound() drop AES-CTR encrypted packets if the payload > sizes not equal to multiple times of 16. > > Fixes: 4470c22de2e1 ("examples/ipsec

Re: [dpdk-dev] [PATCH] ipsec-secgw: fix AES-CTR block size in legacy mode

2019-03-06 Thread Ananyev, Konstantin
> -Original Message- > From: Zhang, Roy Fan > Sent: Tuesday, March 5, 2019 2:41 PM > To: dev@dpdk.org > Cc: akhil.go...@nxp.com; Zhang, Roy Fan ; Ananyev, > Konstantin ; > sta...@dpdk.org > Subject: [PATCH] ipsec-secgw: fix AES-CTR block size in legacy mode > > This patch fixes the inc

[dpdk-dev] [PATCH] ipsec-secgw: fix AES-CTR block size in legacy mode

2019-03-05 Thread Fan Zhang
This patch fixes the incorrect block size for AES-CTR in legacy mode. Originally, wrong block size will cause esp_inbound() drop AES-CTR encrypted packets if the payload sizes not equal to multiple times of 16. Fixes: 4470c22de2e1 ("examples/ipsec-secgw: add AES-CTR") Cc: sta...@dpdk.org Signed-o