Have you looked at the .NET language ? SSL may be build into the Socket Class, if it
is not, then it will be in the next release for sure ! It is documented as being in
there now.
__
OpenSSL Project
Is this the right coding or not ?
int rval;
if ((rval = SSL_connect(con)) != 1)
{
int err = SSL_get_error(con, rval);
/* handle the error here */
}
else
{
// good return
}
__
OpenSSL Project
ok ! thanks
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]
I am calling the ERR_get_error() to get the error, but it returns a 0 ? My code looks
as follows:
if(!SSL_connect(con))
{
ERR_no = ERR_get_error();
if(ERR_no)
{
//never gets here !
err=ERR_no;
dojournal(ERR_error_string(
Can someone tell me what the E0 and E1 values of
the LOAD_DATA #define are ?
Is anyone porting OpenSSL to the .NET Platform ? It looks like Microsoft is not going
to put SSL in the .net platform !
__
OpenSSL Project http://www.openssl.org
User Support Mailing List
Can anyone tell me how to remove RC5 from the OpenSSL build under Windows Microsoft
VC+ ?
Thank you
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL