create certificate

2014-09-06 Thread Amir Reda
dear all i'm trying to make my certificate authority which will create certificate when receive certificate signing request i write this code 1- i create the CSR and sign it which created in the node itself 2- i send the CSR to CA to create a certificate for the node which send previou

RE: openssl verify failure: Re: create certificate chain

2013-08-19 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of sherry > Sent: Friday, 16 August, 2013 20:09 > Hi Dirk, > (This is an open list, so I'll answer.) Aside: I hope you know RSA 1024 is now considered under some threat (though not actually broken), and not safe for a projected 10-year lifeti

openssl verify failure: Re: create certificate chain

2013-08-18 Thread sherry
N = server error 20 at 0 depth lookup:unable to get local issuer certificate Thanks so much! Sherry -- View this message in context: http://openssl.6102.n7.nabble.com/create-certificate-chain-tp44046p46205.html Sent from the OpenSSL - User mailing list archive at

Re: create certificate chain

2013-03-12 Thread ashish2881
in server.csr -CA ca-int.crt -CAkey ca-int.key -set_serial 01 -out server.crt -- View this message in context: http://openssl.6102.n7.nabble.com/create-certificate-chain-tp44046p44215.html Sent from the OpenSSL - User mailing list a

Re: create certificate chain

2013-03-04 Thread Dirk-Willem van Gulik
On 4 mrt. 2013, at 08:47, ashish2881 wrote: > Hi , > I want to create a certificate chain ( self signed root ca > cert+intermediate cert + server-cert). > Please let me know openssl commands and the configuration required to create > root-ca ,intermediate cert signed by root-ca and server c

create certificate chain

2013-03-04 Thread ashish2881
cisco systems -- View this message in context: http://openssl.6102.n7.nabble.com/create-certificate-chain-tp44046.html Sent from the OpenSSL - User mailing list archive at Nabble.com. __ OpenSSL Project

Re: [openssl-users] Re: create certificate request programmatically using OpenSSL API

2012-07-30 Thread Jeffrey Walton
On Mon, Jul 30, 2012 at 5:15 AM, Erwann Abalea wrote: > GOST is not a block cipher, it's the acronym for "GOsudarstvennyi STandard", > which means "State Standard". It's not dedicated to cryptography. My apologies. I thought you were referring to the GOST block cipher. (I've never used it, but kne

Re: create certificate request programmatically using OpenSSL API

2012-07-30 Thread Abyss Lingvo
Hi Jeff There are two GOST algorithms. GOST 28147-89 is for symmetric block cyphering and GOST R 34.10-2001 for asymmetric cyphering and digital signing.  OpenSSL support both algorithms. I mean GOST R 34.10-2001 here.   Best Regards

Re: [openssl-users] Re: create certificate request programmatically using OpenSSL API

2012-07-30 Thread Erwann Abalea
GOST is not a block cipher, it's the acronym for "GOsudarstvennyi STandard", which means "State Standard". It's not dedicated to cryptography. Speaking of GOST standard is redundant, but clearer for non russian locutors. There's a block cipher (poorly) defined as a GOST standard, referenced

Re: create certificate request programmatically using OpenSSL API

2012-07-28 Thread Jeffrey Walton
On Fri, Jul 27, 2012 at 9:00 AM, Abyss Lingvo wrote: > Hi all! > > The last problem is how to create GOST key pair for certificate. > It is clear how to create RSA keys. > Sample is here : http://www.openssl.org/docs/crypto/EVP_PKEY_keygen.html > > #include > #include > EVP_PKEY_CTX *ctx; >

Re: create certificate request programmatically using OpenSSL API

2012-07-27 Thread Abyss Lingvo
Hi all!  The last problem is how to create GOST key pair for certificate. It is clear how to create RSA keys. Sample is here : http://www.openssl.org/docs/crypto/EVP_PKEY_keygen.html    #include  #include  EVP_PKEY_CTX *ctx;  EVP_PKEY *pkey = NULL;  ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL)

create certificate request programmatically using OpenSSL API

2012-07-25 Thread Abyss Lingvo
Thank you All Samples were very useful.  I could create certificates request using RSA keys.  But how to create request usign using GOST keys?    Best Regards Vladislav

Re: create certificate request programmatically using OpenSSL API

2012-07-22 Thread Ozweepay
I wrote this a while ago, but I think it was trivially modified from something I found online. I added a few comments, which perhaps is helpful__ OpenSSL Project http://www.openssl.org User Suppor

Re: create certificate request programmatically using OpenSSL API

2012-07-20 Thread Dr. Stephen Henson
On Fri, Jul 20, 2012, Abyss Lingvo wrote: > Hi all!  > > > How to > create certificate request programmatically via OpenSSL API? > > This is the solution for command line utility:  > > openssl genrsa -out server_key.pem -passout pass:$passwd -des3 1024 &g

Re: create certificate request programmatically using OpenSSL API

2012-07-20 Thread Peter Sylvester
You can take the code in apps/req.c and extract the pieces you need. On 07/20/2012 10:17 AM, Abyss Lingvo wrote: Hi all! How to create certificate request programmatically via OpenSSL API? This is the solution for command line utility: openssl genrsa -out server_key.pem -passout pass

create certificate request programmatically using OpenSSL API

2012-07-20 Thread Abyss Lingvo
Hi all!  How to create certificate request programmatically via OpenSSL API? This is the solution for command line utility:  openssl genrsa -out server_key.pem -passout pass:$passwd -des3 1024 openssl req -new -key server_key.pem -passin pass:$passwd \ -passout pass:$passwd -out

Re: How to create certificate store using DER and PKCS12 certificates

2011-11-10 Thread Peter Sylvester
On 11/10/2011 12:47 PM, Rajib Karmakar wrote: Hi, I am using OpenSSL version 1.0.0e and want to create a certificate store using DER and PKCS12 formatted certificates. I have to read and convert DER and PKCS12 certificates into X509 object and add them into X509_STORE. But if PEM, DER and

How to create certificate store using DER and PKCS12 certificates

2011-11-10 Thread Rajib Karmakar
Hi, I am using OpenSSL version 1.0.0e and want to create a certificate store using DER and PKCS12 formatted certificates. I have to read and convert DER and PKCS12 certificates into X509 object and add them into X509_STORE. But if PEM, DER and PKCS12 certificates are stored in same path I have

how to create Certificate chain

2008-09-30 Thread praveens
I want to know the steps to create a certificate chain using the openssl command prompt. Kindly tell me the step by step instructions to do so. -- View this message in context: http://www.nabble.com/how-to-create-Certificate-chain-tp19722970p19722970.html Sent from the OpenSSL - User mailing

Re: How to create certificate for Dell DRAC4

2007-10-17 Thread Wejn
t; Description: Security error - the certificate could not be uploaded > Errorrcode: 0x000A0004 > > Thank you in advance. > > --Amyangshu > -- View this message in context: http://www.nabble.com/How-to-create-certificate-for-Dell-DRAC4-tf2407852.html#a13229970 Sent from

Re: create certificate form libssl.so

2006-12-13 Thread Victor B. Wagner
pto. > I want to create certificate from my application function call(). > > Is there any API() for creating CA/Server certificate? There is a lot of API. I don't think that there is high level API. There are obvoisly functions to create X509 structure, fill it with neccessary informati

create certificate form libssl.so

2006-12-13 Thread bsenthil
Hi, I want to create CA/Server certificate from library libssl.so. could you please help me any code snippet / url.. I want to create certificate from my application function call(). Is there any API() for creating CA/Server certificate? Thanks, Senthilkumar

How to create certificate for Dell DRAC4

2006-10-11 Thread Amyangshu
certificate to the DRAC, it fails with following error: Description: Security error - the certificate could not be uploaded Errorrcode: 0x000A0004 Thank you in advance. --Amyangshu -- View this message in context: http://www.nabble.com/How-to-create-certificate-for-Dell-DRAC4-tf2407852.html#a6711564

Re: Create certificate on the fly (from external file)

2004-09-22 Thread sam
Sravan wrote: sam wrote: Hi, I have changed the openssl.conf file, it got rid of the problem now. Thank you so much for the help. Now there is another question to ask wrt the openssl.conf file. When the following command enter: openssl req -new -x509 -newkey rsa:1024 -days 3650 -keyout privkey.pe

Re: certificate based authentication: How do I create certificate-files

2003-07-26 Thread Vadim Fedukovich
Dear Torsten, concatenating some certificates into a single file would not automagically make every client and server follow the rules. To enforce it, one can check something while doing SSL handshake or immediately after the handshake before sending application data. Servers could get client nam

certificate based authentication: How do I create certificate-files

2003-07-25 Thread T. Valent
Hi! I probably have a very basic question, but I need to describe my problem in detail to make sure everybody understands what I'm seeking for, because I may not possibly use the correct terminology. I want to have this kind of organizational structure (OU = Organizational Unit): Root-CA | +-

Re: create certificate with ncipher module (from a request)

2002-06-25 Thread Götz Babin-Ebell
Guillaume Coue schrieb: > Hi all, > Following your advice, I achieved to create a request > using a CA private key stored inside a ncipher module, > but now when I try to create my certificate using my > CA private key I've got this error : > > openssl ca -engine chil -keyform engine -keyfile > r

create certificate with ncipher module (from a request)

2002-06-25 Thread Guillaume Coue
Hi all, Following your advice, I achieved to create a request using a CA private key stored inside a ncipher module, but now when I try to create my certificate using my CA private key I've got this error : openssl ca -engine chil -keyform engine -keyfile rsa-privateca -policy policy_anything -in

Re: How to create certificate chain?

2002-04-26 Thread Averroes
Root certificat at the top of the chain. Regards #- Averroes Lily Lu wrote: > Hi, > > I want to create certificate chain. Which openssl command support > certificate chain. Is there any document that I can

Re: how create certificate without header?

2001-01-14 Thread Dr S N Henson
Boris wrote: > > Hello openssl-users, > > i want to create certificates without the text headers, so that there > is only a > > -BEGIN CERTIFICATE- > ... > -END CERTIFICATE- > > without the certificate informations like this: > > Certificate: > Data: > Version: 1 (0x0) > Se

how create certificate without header?

2001-01-13 Thread Boris
Hello openssl-users, i want to create certificates without the text headers, so that there is only a -BEGIN CERTIFICATE- ... -END CERTIFICATE- without the certificate informations like this: Certificate: Data: Version: 1 (0x0) Serial Number: 4 (0x4) Signature Algorithm: md5

Re: How do I create certificate requests from pubkey?

2001-01-04 Thread Patrick G. Moore
Hi, I had to use some legacy keys in my system. So I modified the request function with a new option to read the key from a file. For the private part of the key, I just put a bogus value. Of course the signature on the request was then invalid. I then modified the CA program with an option t

Re: How do I create certificate requests from pubkey?

2001-01-04 Thread Jean-Marc Desperrier
unshine sun wrote: > hiI want to converting public key to certificate requests. How do it? You can't. You need the private key in order to create what is called a proof of possession. i.e. the system is conceived so that you can't just take the public key and create a certificate request with t

How do I create certificate requests from pubkey?

2001-01-03 Thread sunshine sun
hi I want to converting public key to certificate requests. How do it?   Regards   sunshine

Why can't I create certificate requests?

2000-09-06 Thread Yiding Zhang
Hi, I got problems with "unable to load config info", I read the Diagnostics section and know the reason is that it is can't find the configuration file. But how to fix this bug? Thanks in advance. Dean, __ OpenSSL Project