Forum

SSL CERTIFICATE

kfft
25 June 2010, 04:37
Hi
I would like to know more about how to create a certificate for Hiawatha under WinXP
referring to the HOWTO, what are the following commands supposed to do ?

echo "" >> serverkey.pem
cat server.crt >> serverkey.pem
echo "" >> serverkey.pem
rm -f server.crt

Thanks
Keep the good Job Hugo
Hugo Leisink
25 June 2010, 11:13
If you want to create a certificate under Windows, you need openssl for Windows, which can be found here [gnuwin32.sourceforge.net].

The cat command appends the certificate file to the private key file. The rm command removes the certificate file. The echo commands place an empty line after the private key and after the certificate. The empty line not required these days, but earlier version of openssl/libssl required it (yes, it was a bug).
kfft
25 June 2010, 12:51
got it thanks!
This topic has been closed.