RE: [EXT] [PATCH 30/40] cryptodev: reduce rsa struct to only necessary fields

2022-05-24 Thread Akhil Goyal
> > > - reduced rsa struct to only necessary fields. > > > RSA operation is generally used with one input and one output. > > > One exception for this is signature verification, when RSA verify > > > called, both message and signature are inputs, but there is no rsa > > > output except for op statu

RE: [EXT] [PATCH 30/40] cryptodev: reduce rsa struct to only necessary fields

2022-05-24 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Akhil Goyal > Sent: Tuesday, May 24, 2022 2:53 PM > To: Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: Anoob Joseph ; Zhang, Roy Fan > > Subject: RE: [EXT] [PATCH 30/40] cryptodev: reduce rsa struct to only > necessary > fields >

RE: [EXT] [PATCH 30/40] cryptodev: reduce rsa struct to only necessary fields

2022-05-24 Thread Akhil Goyal
> - reduced rsa struct to only necessary fields. > RSA operation is generally used with one input and one output. > One exception for this is signature verification, when RSA verify > called, both message and signature are inputs, but there is no rsa > output except for op status. I am not sure if

[PATCH 30/40] cryptodev: reduce rsa struct to only necessary fields

2022-05-20 Thread Arek Kusztal
- reduced rsa struct to only necessary fields. RSA operation is generally used with one input and one output. One exception for this is signature verification, when RSA verify called, both message and signature are inputs, but there is no rsa output except for op status. Signed-off-by: Arek Kuszta