RE: SSL_write() crashes

2006-02-22 Thread Dusty Hendrickson
Sent: Wednesday, February 22, 2006 4:31 PM To: openssl-users@openssl.org Subject: Re: SSL_write() crashes Chances are, you received a SIGPIPE. If not caught, that's a fatal signal. (SIGPIPE occurs when you try to write to a socket that has been closed by the other end.) -Kyle H On 2/22

SSL_write() crashes

2006-02-22 Thread Dusty Hendrickson
We currently have an SSL client/server setup that uses a basic "send request, receive response" architecture. In one scenario, we did something similar to the following: - Client: 1. Send request 2. Delete connection Server: 1. Wait for connection 2. Process request

OpenSSL stream interface for file encryption

2005-09-06 Thread Dusty Hendrickson
Does OpenSSL have a stream interface for file encryption? For example, is there a stream-based method of encrypting a file in pieces rather than loading an entire file into memory? Dusty __ OpenSSL Project

Threading OpenSSL

2005-08-28 Thread Dusty Hendrickson
I am currently working on a project making use of SSL connections via OpenSSL. We need a stable thread-safe SSL setup. I currently know 3 things about OpenSSL thread-safety: 1. Cannot share SSL connection amongst threads 2. Provide locking_function() 3. Provide id_function() I am interested in