SSL_write parameters after an SSL_ERROR_WANT_(READ|WRITE)

2002-05-28 Thread Joel Daniels
attempted to write the time of day to an SSL stream, but failed with the error SSL_ERROR_WANT_WRITE. Later on I discover that I can write, but by this time the time of day has changed by one second. What am I to do? - Joel Daniels

Ephemeral RSA Keys

2002-05-24 Thread Joel Daniels
are there any reasons why I should use Ephemeral RSA vs. Ephemeral DH? Also are there any reasons why I should not use Ephemeral Keys period? - Joel Daniels __ OpenSSL Project http://www.openssl.

SSL_set_fd vs. SSL_set_bio

2002-05-24 Thread Joel Daniels
Is there any benefit to creating my own BIO and using SSL_set_bio as apposed to SSL_set_fd, if I am trying to associate the SSL object with a file descriptor anyway? - Joel Daniels __ OpenSSL Project

RE: Alt Subject Name : IP Address

2001-10-04 Thread Joel Daniels
ct line. } catch (...) { return FALSE; //There was a memory exception } if(sCertAddress != sAddress) //If the server name from the server certificate and the server name do not match... return FALSE; //ERROR COULD NOT VALIDATE SERVER Joel Daniels (a novice).