Re: [openssl-users] Multiple client connection to Nginx server

2018-12-13 Thread Filipe Fernandes
Hi, Socket file descriptor is unique during the entire connection time. You could save the data using the fd as key to a hashtable entry. Regards Na(o) quinta, 13 de dez de 2018, 05:16, ASHIQUE CK escreveu: > 4. f-stack nginx server 1.11.10 > > On Thu, Dec 13, 2018 at 9:00 AM ASHIQUE CK

Re: [openssl-users] Multiple client connection to Nginx server

2018-12-12 Thread ASHIQUE CK
4. f-stack nginx server 1.11.10 On Thu, Dec 13, 2018 at 9:00 AM ASHIQUE CK wrote: > Hi, > 1. The engine that we wrote is by the reference of qat, is just an > interface which receives the openssl parameters of AES and RSA and offload > them to an FPGA hardware accelerator. > 2. > 3. Openssl

Re: [openssl-users] Multiple client connection to Nginx server

2018-12-12 Thread ASHIQUE CK
Hi, 1. The engine that we wrote is by the reference of qat, is just an interface which receives the openssl parameters of AES and RSA and offload them to an FPGA hardware accelerator. 2. 3. Openssl 1.1.0 h 4. Uses f-stack nginx 1.10.1 5. We ran nginx server which have a 1 Gb file in its root

Re: [openssl-users] Multiple client connection to Nginx server

2018-12-12 Thread Michael Richardson
ASHIQUE CK wrote: > We are using a Crypto Accelerator Engine to offload AESGCM and RSA > parameters. Trying to connect multiple clients simultaneously with a > single Nginx server, which is using this accelerator. The Key and IV You probably need to tell us: 1) which engine? did you write

Re: [openssl-users] Multiple client connection to Nginx server

2018-12-12 Thread ASHIQUE CK
Hi, Thanks for your reply. Openssl only passes (ctx,type,arg,ptr) in the case of header and (ctx,out,in,inl) in the case of message, these two are the only links to engine after the handshake process for the whole process. In my case, I am downloading a file from nginx root directory using a

Re: [openssl-users] Multiple client connection to Nginx server

2018-12-12 Thread Jakob Bohm via openssl-users
On 12/12/2018 12:54, ASHIQUE CK wrote: Hi, Any help on this ? On Wed, Dec 12, 2018 at 3:03 PM ASHIQUE CK > wrote: Hi, We are using a Crypto Accelerator Engine to offload AESGCM and RSA parameters. Trying to connect multiple clients simultaneously

Re: [openssl-users] Multiple client connection to Nginx server

2018-12-12 Thread ASHIQUE CK
Hi, Any help on this ? On Wed, Dec 12, 2018 at 3:03 PM ASHIQUE CK wrote: > Hi, > We are using a Crypto Accelerator Engine to offload AESGCM and RSA > parameters. Trying to connect multiple clients simultaneously with a single > Nginx server, which is using this accelerator. The Key and IV is