Re: m2crypto loading cert file from memory buffer

2008-12-05 Thread Heikki Toivonen
netpork wrote: > ctx = SSL.Context('sslv3') > ctx.load_cert_chain('client.pem') > > anyone knows a way of loading cert file from memory buffer and not > from a file? Yeah, see for example how I did it for Chandler: http://svn.osafoundation.org/chandler/trunk/chandler/parcels/osaf/framework/certst

m2crypto loading cert file from memory buffer

2008-12-04 Thread netpork
started using m2crypto recently, it works pretty well by now, i just have one question: ctx = SSL.Context('sslv3') ctx.load_cert_chain('client.pem') anyone knows a way of loading cert file from memory buffer and not from a file? i just do not want to have my cert file in the directory of my app t