Re: [dpdk-dev] [PATCH v4] cryptodev: make xform key pointer constant

2019-07-05 Thread Thomas Monjalon
25/06/2019 14:46, Akhil Goyal: > > > > > This patch changes the key pointer data types in cipher, auth, > > and aead xforms from "uint8_t *" to "const uint8_t *" for a > > more intuitive and safe sessionn creation. > > > > Signed-off-by: Fan Zhang > > Acked-by: Arek Kusztal > > Acked-by: Akhil

Re: [dpdk-dev] [PATCH v4] cryptodev: make xform key pointer constant

2019-06-25 Thread Akhil Goyal
> > This patch changes the key pointer data types in cipher, auth, > and aead xforms from "uint8_t *" to "const uint8_t *" for a > more intuitive and safe sessionn creation. > > Signed-off-by: Fan Zhang > Acked-by: Arek Kusztal > Acked-by: Akhil Goyal > --- > v4: > - Removed deprecation not

[dpdk-dev] [PATCH v4] cryptodev: make xform key pointer constant

2019-06-24 Thread Fan Zhang
This patch changes the key pointer data types in cipher, auth, and aead xforms from "uint8_t *" to "const uint8_t *" for a more intuitive and safe sessionn creation. Signed-off-by: Fan Zhang Acked-by: Arek Kusztal Acked-by: Akhil Goyal --- v4: - Removed deprecation notice and updated release no