Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-21 Thread Akhil Goyal
On 10/20/2017 3:09 PM, Thomas Monjalon wrote: 20/10/2017 11:37, Thomas Monjalon: 15/10/2017 00:17, Akhil Goyal: lib/librte_security/Makefile | 53 +++ lib/librte_security/rte_security.c | 149 lib/librte_security/rte_security.h | 535 +++

Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-21 Thread Akhil Goyal
On 10/20/2017 3:07 PM, Thomas Monjalon wrote: 15/10/2017 00:17, Akhil Goyal: lib/librte_security/Makefile | 53 +++ lib/librte_security/rte_security.c | 149 lib/librte_security/rte_security.h | 535 +++ lib/librte_securi

Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-21 Thread Akhil Goyal
On 10/19/2017 3:00 PM, Ananyev, Konstantin wrote: + +/** + * Security context for crypto/eth devices + * + * Security instance for each driver to register security operations. + * The application can get the security context from the crypto/eth device id + * using the APIs rte_cryptodev_get_se

Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-20 Thread Thomas Monjalon
20/10/2017 11:37, Thomas Monjalon: > 15/10/2017 00:17, Akhil Goyal: > > lib/librte_security/Makefile | 53 +++ > > lib/librte_security/rte_security.c | 149 > > lib/librte_security/rte_security.h | 535 > > +++ > > lib/librte_s

Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-20 Thread Thomas Monjalon
15/10/2017 00:17, Akhil Goyal: > lib/librte_security/Makefile | 53 +++ > lib/librte_security/rte_security.c | 149 > lib/librte_security/rte_security.h | 535 > +++ > lib/librte_security/rte_security_driver.h| 155

Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-19 Thread Ananyev, Konstantin
> + > +/** > + * Security context for crypto/eth devices > + * > + * Security instance for each driver to register security operations. > + * The application can get the security context from the crypto/eth device id > + * using the APIs rte_cryptodev_get_sec_ctx()/rte_eth_dev_get_sec_ctx() > + *

Re: [dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-15 Thread Aviad Yehezkel
On 10/15/2017 1:17 AM, Akhil Goyal wrote: rte_security library provides APIs for security session create/free for protocol offload or offloaded crypto operation to ethernet device. Signed-off-by: Akhil Goyal Signed-off-by: Boris Pismenny Signed-off-by: Radu Nicolau Signed-off-by: Declan Dohe

[dpdk-dev] [PATCH v4 01/12] lib/rte_security: add security library

2017-10-14 Thread Akhil Goyal
rte_security library provides APIs for security session create/free for protocol offload or offloaded crypto operation to ethernet device. Signed-off-by: Akhil Goyal Signed-off-by: Boris Pismenny Signed-off-by: Radu Nicolau Signed-off-by: Declan Doherty Signed-off-by: Aviad Yehezkel --- lib/