Re: Passing TLS sessions between programs

2013-12-13 Thread hirenshah05
Did you had nay luck with moving connection (SSL object) ? -- View this message in context: http://openssl.6102.n7.nabble.com/Passing-TLS-sessions-between-programs-tp10087p47679.html Sent from the OpenSSL - User mailing list archive at Nabble.com

RE: Passing TLS sessions between programs

2012-11-06 Thread Eisenacher, Patrick
-Original Message- From: Richard Könning Am 03.11.2012 15:26, schrieb 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 OpenSSL crypto

Re: Passing TLS sessions between programs

2012-11-06 Thread Michel
I found in doc/ssleay.txt : [...] The PEM_write_SSL_SESSION(fp,x) and PEM_read_SSL_SESSION(fp,x,cb) will write to a file pointer in base64 encoding. What you can do with this, is pass session information between separate processes. [...] Le 06/11/2012 12:11, Eisenacher, Patrick a écrit Once

RE: Passing TLS sessions between programs

2012-11-06 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of Frediano Ziglio Sent: Saturday, 03 November, 2012 10:26 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 OpenSSL crypto

Re: Passing TLS sessions between programs

2012-11-06 Thread Frediano Ziglio
2012/11/6 Dave Thompson dthomp...@prinpay.com: From: owner-openssl-us...@openssl.org On Behalf Of Frediano Ziglio Sent: Saturday, 03 November, 2012 10:26 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

Re: Passing TLS sessions between programs

2012-11-05 Thread Richard Könning
Am 03.11.2012 15:26, schrieb 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 OpenSSL crypto information (like algorithm used and key) in order to pass to

Passing TLS sessions between 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 OpenSSL crypto information (like algorithm used and key) in order to pass to the other process. Is there a way to do it ?