RE: Create certificates and keys from C/C++

2007-05-04 Thread muggiasca
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Schwartz Sent: mercoledì, 2. maggio 2007 17:58 To: openssl-users@openssl.org Subject: RE: Create certificates and keys from C/C++ Hi, is there a function or something similar to create keys and certificates directly from code? Thank You

Re: Create certificates and keys from C/C++

2007-05-04 Thread Subramaniam
Schwartz Sent: mercoledì, 2. maggio 2007 17:58 To: openssl-users@openssl.org Subject: RE: Create certificates and keys from C/C++ Hi, is there a function or something similar to create keys and certificates directly from code? Thank You Yes. There are functions like RSA_generate_key

RE: Create certificates and keys from C/C++

2007-05-04 Thread muggiasca
:[EMAIL PROTECTED] On Behalf Of Subramaniam Sent: venerdì, 4. maggio 2007 11:31 To: openssl-users@openssl.org Subject: Re: Create certificates and keys from C/C++ hi Download the openssl-0.9.8e.tar.gz(or other version) tar ball from ww.openssl.org and uncompress it you will have apps directory

RE: Create certificates and keys from C/C++

2007-05-04 Thread David Schwartz
Thank you… I did it but I think that is too difficult for me without explications of functions and structures and…... There isn’t a “manual” (guide?) or a document about this functions? Regards I would very strongly advice you to find a knowledgeable security expert to assist you. What you

RE: Create certificates and keys from C/C++

2007-05-02 Thread David Schwartz
Hi, is there a function or something similar to create keys and certificates directly from code? Thank You Yes. There are functions like RSA_generate_key, DSA_generate_key, X509_sign, and so on. It is not a particularly simple thing to do though. Look at the example code in apps/ca.c,