cert depth

2005-10-03 Thread Frans Gunawan
Hello, I would like to ask, how to generate the certificate until depth=3 ? Thank you, Frans

Support for anyExtendedKeyUsage?

2005-10-03 Thread Dominic Hulewicz
Is it possible with OpenSSL to create a X.509 certificate that includes the anyExtendedKeyUsage keyPurposeID? (see RFC 3280 section 4.2.1.13). I need to include an extended key usage for a particular application, but I don't wish to retrict usages of the key. Thanks, Dominic.

OpenSSL PHO Integration

2005-10-03 Thread Rodrigo H . Vázquez Cañás
Does anyone tried to Integrate Eracoms PHO with OpenSSL? Im trying to setup a CA using OpenSSL, but Im not able to save the root certificate of the CA in the HSM. The best I did using OpenSSL is to generate and store in the protected memory of the HSM the public and private keys. Is

duplicate RSA struct

2005-10-03 Thread Stefan Vatev
Hello guys, I'd like to know what's the best way to duplicate the RSA struct. I want something like X509_dup. The only way that come to my mind is to rsa = RSA_new() and then for each member of rsa to BN_new and BN_dup Any ideas will be highly appreciated. -

Don Dhondt/US/BULL is out of the office.

2005-10-03 Thread Don . Dhondt
I will be out of the office starting 10/02/2005 and will not return until 10/06/2005. __ OpenSSL Project http://www.openssl.org User Support Mailing List

Re: duplicate RSA struct

2005-10-03 Thread Nils Larsch
Stefan Vatev wrote: Hello guys, I'd like to know what's the best way to duplicate the RSA struct. I want something like X509_dup. The only way that come to my mind is to rsa = RSA_new() and then for each member of rsa to BN_new and BN_dup Any ideas will be highly appreciated. what about: RSA

design strategy for clean termination of multithreaded server ?

2005-10-03 Thread dev
One of the desirable features of a server is the ability to shutdown gracefully without leaving the resources it uses in an inconsistent state. I am looking for a manageable way to ensure this when the server is multithreaded. to that effect i need to close all the SSL connections opened by the

RE: design strategy for clean termination of multithreaded server ?

2005-10-03 Thread David Schwartz
One of the desirable features of a server is the ability to shutdown gracefully without leaving the resources it uses in an inconsistent state. I am looking for a manageable way to ensure this when the server is multithreaded. to that effect i need to close all the SSL connections opened by