[dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation of SW crypto device

2016-10-11 Thread Mrozowicz, SlawomirX
aszX >; Mrzyglod, DanielX T > >Subject: RE: [dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation of >SW crypto device > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Akhil Goyal >> Sent: Monday, September 12, 2016 1

[dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation of SW crypto device

2016-09-14 Thread Jastrzebski, MichalX K
> ; Kulasek, TomaszX > ; Mrzyglod, DanielX T > > Subject: Re: [dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation > of SW crypto device > > On 8/26/2016 12:51 PM, Piotr Azarewicz wrote: > > > +/** Provide session for operation */ > > +static struct lib

[dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation of SW crypto device

2016-09-12 Thread Akhil Goyal
On 8/26/2016 12:51 PM, Piotr Azarewicz wrote: > +/** Provide session for operation */ > +static struct libcrypto_session * > +get_session(struct libcrypto_qp *qp, struct rte_crypto_op *op) > +{ > + struct libcrypto_session *sess = NULL; > + > + if (op->sym->sess_type ==

[dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation of SW crypto device

2016-09-08 Thread Zbigniew Bodek
Hello, I hope this message will get formatted correctly as it is a forwarded e-mail. Please see my question in-line. Kind regards Zbigniew (zbb) > From: Marcin Kerlin > > This code provides the initial implementation of the libcrypto > poll mode driver. All cryptography operations are using

[dpdk-dev] [PATCH 1/4] libcrypto_pmd: initial implementation of SW crypto device

2016-08-26 Thread Piotr Azarewicz
From: Marcin Kerlin This code provides the initial implementation of the libcrypto poll mode driver. All cryptography operations are using Openssl library crypto API. Each algorithm uses EVP_ interface from openssl API - which is recommended by Openssl maintainers.