RE: pkcs12 and CA cert ?

2001-04-10 Thread Rakesh.R
Title: RE: pkcs12 and CA cert ? -Original Message- From: Daniel Suen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 11:35 AM To: [EMAIL PROTECTED] Subject: RE: pkcs12 and CA cert ? But then, I still don't see how things fit together. The thing is that, (1) is it normal

RE: pkcs12 and CA cert ?

2001-04-10 Thread Daniel Suen
But then, I still don't see how things fit together. The thing is that, (1) is it normal to have the CA cert in my IE with a "key sign" on it? (2) If (1) is abnormal, how can I get rid of it? I've done the import, and tried export to other formats which strips the private key off and re-imported i

RE: Can pkcs12 cert being used to signed data

2001-04-10 Thread Rakesh.R
Title: RE: Can pkcs12 cert being used to signed data I think its possible. Please go through the openssl documentation for PKCS12. Rakesh R (Email: [EMAIL PROTECTED]) -Original Message- From: Noor Haizad Mohd Said [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 9:11 AM T

RE: pkcs12 and CA cert ?

2001-04-10 Thread Rakesh.R
Title: RE: pkcs12 and CA cert ? Dear Suen Tak Tsung Daniel, The PKCS12 format contains the private key. This format is mainly used to export private key with the certificate. The method you used to create the PKSC12 is correct. Double click the certificate and import it into the certificate

BIO and byte array

2001-04-10 Thread Antonio Ruiz Martínez
Hello!     I want to create a BIO from a byte array and I want make the reverse operation (I want an byte array from a BIO). I'm having the next code... /* From a byte array to a BIO*/  BIO *bio=BIO_new(BIO_s_mem());  BIO_set_mem_eof_return(bio,0);  BIO_write(bio,(char *)byte_array, length_byte_a

Repost: Useful newbie document

2001-04-10 Thread Tat Sing Kong
I've written a document as part of my own openSSL notes that describes how to code an SSL client and server using the openSSL libraries. It's a bit noddy but it does the job. These might be useful for people just starting (I know I was looking for such a document when I started). The last t

Repost: Useful newbie document

2001-04-10 Thread Tat Sing Kong
I've written a document as part of my own openSSL notes that describes how to code an SSL client and server using the openSSL libraries. It's a bit noddy but it does the job. These might be useful for people just starting (I know I was looking for such a document when I started). The last tim

passing the password argument to encrypt a private key using openssl utility.

2001-04-10 Thread Alon Philosoph
Dear Sir I am trying to encrypt a private key using the option -passin but still i get the "enter PEM passphrase:" message. openssl rsa -des3 -in private.key -passin pass:1234 -out private.key.crypt or openssl rsa -des3 -in private.key -passin file:password.txt -out private.key.crypt where in

PVK Utility Source Code (From Rakesh, Ushustech)

2001-04-10 Thread Rakesh.R
  Hai,   I want to convert a private key in DER format to PEM format. I have tried with the PVK utility. It’s a fantastic tool but still I am stuck with a problem. I want to pass the password of private key as command line argument. This is not possible with the present utility. Can some

Installing OpenSSL under server IBM-AIX

2001-04-10 Thread Amarone Massimiliano
It is possible to install Apache-SSL into a server IBM-AIX? If It is possible wich version of OpenSSL, and Apache? Thank You __ OpenSSL Project http://www.openssl.org User Support Mailing List

Re: pem/bio/evp help

2001-04-10 Thread Ferdinando Ricchiuti
Hello, BIO is an I/O abstraction. To create a new BIO use the BIO_new() function. You have to pass a method that is used to define the BIO type. In your case you have to create a Memory BIO to read from your char*. BIO *mybio=BIO_new(BIO_s_mem()); this method allows some specific function to s