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
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
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
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
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
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
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.