Re: Please try today's snapshot

2001-03-16 Thread Rob Neff
I've successfully compiled the 20010315 snapshot for the Win32 environment using VC++6.0 without any of the "warnings as errors" messages. All self tests appear to complete successfully. I've performed some initial tests of my software modules against both debug and release DLLs and things

Re: Problems with SSL_write ..

2001-03-16 Thread Rob Neff
- Original Message - From: Richard Levitte - VMS Whacker [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, March 16, 2001 5:49 AM Subject: Re: Problems with SSL_write .. From: Peter Sylvester [EMAIL PROTECTED] Peter.Sylvester Peter.Sylvester sprintf(szBuf,

Re: __declspec(dllexport) and __declspec(dllimport)

2001-03-02 Thread Rob Neff
I'm forwarding a previous message concerning this issue: - Original Message - From: Richard Levitte - VMS Whacker [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, January 04, 2001 11:50 AM Subject: Re: Windows, DLLs and variables. From: "Rob Neff&qu

Re: ENGINE_load_key

2001-02-07 Thread Rob Neff
[snip] Corinne Dive-Reclus, Principal Software Engineer Baltimore Technologies, Focus 31, West Wing,Cleveland Road, Hemel Hempstead, Hertfordshire, HP2 7BW, England Tel: +44 (0) 1442 342600 Fax: +44 (0) 1442 347399 E-mail [EMAIL PROTECTED] Website http://www.baltimore.com/ Just out of

Re: Incorrect MIME headers separators in 0.9.5a

2001-02-05 Thread Rob Neff
I find this topic thread amusing in that I've encountered a similar issue located within Netscape's, err..iPlanet's Proxy server with regard to the insertion of HTTP headers into the stream. I discovered this during the testing of my https library (which uses OpenSSL of course!). The proxy was

Re: Windows, DLLs and variables.

2001-01-03 Thread Rob Neff
Regarding Windows DLL's and variables, the following is generated by the VC6 wizard for the DLL header file for just such a thing: #ifdef MYDLL_EXPORTS #define MYDLL_API __declspec(dllexport) #else #define MYDLL_API __declspec(dllimport) #endif extern MYDLL_API int nTestdll; MYDLL_API int

Verification of server certificate

2000-12-07 Thread Rob Neff
Gentlemen, After successfully establishing an SSL connection, I'm attempting to ascertain the validity of the server certificate received by the client. The server certificate received was signed by Verisign, yet the OpenSSL engine does not successfully validate it.The root certificates I

Re: Rescorla's book SSL and TLS

2000-11-21 Thread Rob Neff
FWIW: I just picked up a copy myself from Barnes and Nobles so I know they carry it too... - Original Message - From: Dan Kegel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 20, 2000 12:30 PM Subject: Rescorla's book "SSL and TLS" I just got Eric Rescorla's book "SSL

Re: cvs commit: openssl/crypto/evp bio_enc.c evp.h

2000-11-12 Thread Rob Neff
Eh? Isn't the IV length the same as the block length? Nope. Rijndael's biggest IV is 16 bytes, but the biggest block is 32 bytes. I haven't checked why, so if someone wants to enlighten me... I too was under the assumption that the IV in use needed to be the same size as the block

Re: Constification

2000-11-11 Thread Rob Neff
From: Geoff Thorpe [EMAIL PROTECTED] Hi there, [snip] psmith IMHO this is a legitimate reason to cast away const, and that psmith the "const" notation on the arguments to lhash is useful for psmith self-documentation purposes, at the least. Hmm, perhaps you're right. I'm just

Re: RSAref glue will go byebye!

2000-11-10 Thread Rob Neff
Add another vote to the "remove RSAref code" column (and you may even bypass the 10 days waiting period for mail-in ballots, unlike certain current political processes in a large western hemisphere country that shall remain nameless...)! - Original Message - From: Richard Levitte - VMS

Re: Constification

2000-11-10 Thread Rob Neff
With regards to this current discussion, has anyone given thought to the fact that if the const string address being passed into a function with a const typed parameter resides within a memory page marked as ReadOnly the constified function will GP should it attempt to write to that page? I'm

Re: Client Authentication

2000-11-02 Thread Rob Neff
The client app in the demo does not include certificates. Examine the server app code and cut and paste the certificate code. That will enable your client app to send a certificate. To create a new certificate, at least how I did it on WinNT, was to run testss.bat after modifying the

Re: OpenSSL versioning change

2000-10-21 Thread Rob Neff
From: Richard Levitte - VMS Whacker [EMAIL PROTECTED] [snip] Well, I'd say that a proof-of-concept does not lie in the version number, but rather in the use of the package and it's stability and feasability (sp?). One can look at a number of products out there with major version numbers

OpenSSL versioning change

2000-10-20 Thread Rob Neff
Gentlemen, Please accept the following suggestion for discussion. As a developer for a large financial institution I am attempting to determine the feasibility of using the functionality provided by the OpenSSL libraries in our commercial applications. I'm sure you are already aware that

Re: OpenSSL versioning change

2000-10-20 Thread Rob Neff
Pointing out who has been using OpenSSL for how long should provide confidence in the software. If not, you surely can get a more appropriately numbered library from RSA Data Security. Allow me to restate my position. I am determing the feasibility of using open-source software within a

Re: SSL_CTX_load_verify_locations - can't get error string

2000-10-19 Thread Rob Neff
I too experienced this behavior when attempting to use ERR_print_errors_fp(), but I encountered it while attempting a TLSv1 connection to an SSLv3 server that subsequently caused that same exception in my server. I don't think our incidents are separate but rather perhaps a bug in the

TLSv1/SSLv3 error

2000-10-18 Thread Rob Neff
Gentlemen, While testing OpenSSL functionality with a client and serverapp I wrote, I encountered the following issue: If the server code is using the SSL_METHOD SSLv3_server_method and the client is using TLSv1_client_method, the server fails tonegotiate connection. This does not happen