. -verify 5 > logfile.txt 2>&1
On tcsh
openssl ... >& logfile.txt
(from man pages)
HTH
Ben Kim
Developer
College of Education
Texas A&M University
__
OpenSSL Project http://
On Tue, 24 May 2005, Dr. Stephen Henson wrote:
>If you don't get an error you just configure it to use my.crt and
>my.nopass.key, or concatenate the two and just point it at that one file.
Thanks greatly. It solved my problem.
Regards,
Ben Kim
Developer
College of Education
2) Extract public part of the key
openssl rsa -in my.nopass.key -pubout -out my.pub.key
(3) Concatenate key and cert together.
cat my.pub.key my.crt > my.pem
But this didn't work.
My purpose is to make an equivalent of (A) from the existing certificate.
Could someone advise?
Thanks..