Re: pem CSR's

2001-11-15 Thread Edward Jiang
openssl req -outform PEM -new -newkey rsa:1024 [EMAIL PROTECTED] wrote: Hi, I was wondering if anyone could teel me how I might generate a csr in PEM format. I belive I need to generate a key etc... but am not sure how to get it to be pem format. Thanks for you help. Brett

Re: Algorithms

2001-10-10 Thread Edward Jiang
openssl ciphers -v Andrew Finnell wrote: Could someone point me to a list of all the algorithms OpenSSL uses so that I can put it in the report for the export beauru?Thanks! Btw, I didnt see anything of Openssl.org about this- Andrew T. Finnell

Re: change PKCS12 password

2001-08-16 Thread Edward Jiang
On Thu, 16 Aug 2001, Wang, Kate wrote: | | What is the exact command used to change PKCS12 password using Openssl? | | Thanks. | | Kate Well, I believe this should work: openssl pkcs12 -in old.p12 | openssl pkcs12 -export -out new.p12 Then, you should type in: 1. Old import password 2. PEM

Re: change PKCS12 password

2001-08-16 Thread Edward Jiang
On Thu, 16 Aug 2001, Wang, Kate wrote: | What is the exact command used to change PKCS12 password using Openssl? | | Thanks. | Actually, if you don't want to type PEM password, then you can try this one instead: openssl pkcs12 -nodes -in old.p12 | openssl pkcs12 -export -out new.p12 Regards,

Re: message signing

2001-07-19 Thread Edward Jiang
On Thu, 19 Jul 2001, Judy Trent wrote: | Hi, | | This might seem like a very basic question but I'm wondering if openSSL does | message signing/message verification. If it does, does anyone know where I | can find some documentation? | You may want to look into smime program, try man smime.