Re: Certificate verification in C

2008-01-18 Thread Dr. Stephen Henson
On Fri, Jan 18, 2008, ediemens wrote: > > The problem is that, when verifying the same certificate as before, I now > get a "certificate signature failure" error message, and cannot figure out > what the problem is. > You are missing a call to OpenSSL_add_all_algorithms(). See the FAQ and manua

Re: Enable AT_KEYEXCHANGE property on openssl generated key+certificate?

2008-01-18 Thread Dr. Stephen Henson
On Fri, Jan 18, 2008, Charles Lindsay wrote: > I would like to create a key+certificate using OpenSSL, and import > that to MS SqlServer 2005 for it to use for encrypted sessions (please > don't ask why I need to do this, some of us are just cursed). > Microsoft imposes various restrictions on suc

Enable AT_KEYEXCHANGE property on openssl generated key+certificate?

2008-01-18 Thread Charles Lindsay
I would like to create a key+certificate using OpenSSL, and import that to MS SqlServer 2005 for it to use for encrypted sessions (please don't ask why I need to do this, some of us are just cursed). Microsoft imposes various restrictions on such certificates, including one I do not understand: fro

Certificate verification in C

2008-01-18 Thread ediemens
Hello, As a new user of openssl, I am trying to figure out the certificate verification process. For this purpose, I created a self-signed "root" CA, put it in a "trusted" directory and used it to sign a user certificate. I then used the following command to test the validity of the user cert

Compiling in VisualC++

2008-01-18 Thread shrinivas balulad
Hi I have dowloaded Openssl 9.8g. I want compile the code in Microsoft VisualC++ (VC6 or VS2005). I am not able to find the project workspace in the downloaded files. Please help me how to get it and also steps to follow in compiling. Can we get "ssleay32.lib" and "libeay32.lib" directly witho

Re: https + onpenSSL + firefox: 8101 error

2008-01-18 Thread alain
I comented it in openssl.cnf but firefox I have still problems with fierfox. Now my extensions are: X509v3 extensions: X509v3 Subject Key Identifier: D6:B4:67:2C:43:7C:CF:2D:AA:DE:AE:C0:9B:83:14:EC:A2:D2:B8:3A X509v3 Authority Key Identifier: keyi

Re: SSL_accept Failure error:FFFFFFFF:lib(255):func(4095):reason(4095)

2008-01-18 Thread Srinivas Gowda
Yes, I have initialized the SSL library, SSL * init_context(char *keyfile, char *password) { . /* Initialize , load libraray and error strings */ /* OpenSSL_add_all_algorithms(); */ SSL_library_init(); SSL_load_error_strings(); .. } Hello, > I am new to OpenSSL.