RE: [PATCH] examples/ipsec-secgw: fix AES-CTR IV length

2023-06-20 Thread Akhil Goyal
> Subject: [PATCH] examples/ipsec-secgw: fix AES-CTR IV length > > Set AES-CTR IV length to 8 in SA config as it is > used for per packet IV length and set it to 16 > in xform since the application populates 16B IV > in the datapath. AES-CTR requires 16B IV > constructed f

RE: [PATCH] examples/ipsec-secgw: fix AES-CTR IV length

2023-04-13 Thread Anoob Joseph
> Subject: [PATCH] examples/ipsec-secgw: fix AES-CTR IV length > > Set AES-CTR IV length to 8 in SA config as it is used for per packet IV > length and > set it to 16 in xform since the application populates 16B IV in the datapath. > AES- > CTR requires 16B IV constructed f

[PATCH] examples/ipsec-secgw: fix AES-CTR IV length

2023-04-13 Thread Tejasree Kondoj
Set AES-CTR IV length to 8 in SA config as it is used for per packet IV length and set it to 16 in xform since the application populates 16B IV in the datapath. AES-CTR requires 16B IV constructed from nonce and counter. Fixes: 5ff7502f345e ("examples/ipsec-secgw: set AES-CTR IV length to 16") Si