Re: [Cryptodev-linux-devel] Passing sessions between different programs

2012-11-05 Thread Nikos Mavrogiannopoulos
On 11/03/2012 09:08 PM, Frediano Ziglio wrote: > Hi, what I'm trying to do is to store a connection in another process > to do connection pooling. If by storing connection you mean to transfer a gnutls session from one process to another, you cannot do it, either with cryptodev or without. The

Re: [Cryptodev-linux-devel] Passing sessions between different programs

2012-11-03 Thread Nikos Mavrogiannopoulos
On 11/03/2012 03:22 PM, Frediano Ziglio wrote: > Hi, > I'm searching for a way to pass a TLS session between two programs > under Unix. I can use unix sockets to send the file descriptor but I > don't know how to request to GnuTLS crypto information (like algorithm > used and key) in order to pa

[Cryptodev-linux-devel] Passing sessions between different programs

2012-11-03 Thread Frediano Ziglio
Hi, I'm searching for a way to pass a TLS session between two programs under Unix. I can use unix sockets to send the file descriptor but I don't know how to request to GnuTLS crypto information (like algorithm used and key) in order to pass to the other process. Is there a way to do it ? Regar