I'm playing around with my FTP server (RaidenFTPD) and am trying to make a new certificate for it with openssl.
I get as far as making the keys: cert.pem & key.pem which I'm supposed to be using.
The PEM Phrase is supposed to be "password" but what about the challenge password?
When I later connect to my server I get "invalid certificate" with the openssl certs.
I've made certs with FTP Voyager and CuteFTP also, then my clients reports "self signed".
Is there some part I've missed?
:
"
openSSL genrsa -des3 -out ca.key 1024
openSSL req -new -x509 -days 365 -key ca.key -out ca.crt
openSSL x509 -noout -text -in ca.crt
openSSL genrsa -des3 -out server.key 1024
openSSL rsa -noout -text -in server.key
openSSL req -new -key server.key -out server.csr
openSSL ca -days 365 -cert ca.crt -keyfile ca.key -in server.csr -out server.crt
"
 
Any help would be appreciated :) It's a fun project, but not really prosperous :D

Reply via email to