Re: Serialize/Deserialize SSL state

2019-08-10 Thread Jakob Bohm via openssl-users
On 09/08/2019 23:21, Felipe Gasper wrote: On Aug 9, 2019, at 3:42 PM, Osama Mazahir via openssl-users wrote: Is there a way to serialize and deserialize the ssl_st state (i.e. including any child objects)? Background: I would like to handoff all the SSL state (along my own managed state, f

Re: Serialize/Deserialize SSL state

2019-08-09 Thread Felipe Gasper
> On Aug 9, 2019, at 3:42 PM, Osama Mazahir via openssl-users > wrote: > > Is there a way to serialize and deserialize the ssl_st state (i.e. including > any child objects)? > > Background: I would like to handoff all the SSL state (along my own managed > state, file descriptors, etc) to a

Re: Serialize/Deserialize SSL state

2019-08-09 Thread Short, Todd via openssl-users
Not without a lot of work. It’s not part of the current API. We have tried doing an internal implementation; it was over 1K of new code, and it wasn’t complete. -- -Todd Short // tsh...@akamai.com // “One if by land, two if by sea, threeif by the Internet." > On Aug 9, 2019, at 3:42 PM, Osama Ma

Serialize/Deserialize SSL state

2019-08-09 Thread Osama Mazahir via openssl-users
Is there a way to serialize and deserialize the ssl_st state (i.e. including any child objects)? Background: I would like to handoff all the SSL state (along my own managed state, file descriptors, etc) to another Linux running process (I will handle the IPC handoff). The connection already ha