Juergen Kaus wrote: > Hello Forum, > > if i greate a own ca the key-files with openssl they are valid for 30 days. > IŽd set up some points in the openssl.cnf-file but nothing changed if i > greated key-files. How could i set up the validation forever or fpr 365 days > to expire? > > Thank you, JK > ______________________________________________________________________ > OpenSSL Project http://www.openssl.org > User Support Mailing List [EMAIL PROTECTED] > Automated List Manager [EMAIL PROTECTED]
try to make following steps: openssl genrsa -rand /proc/stat 1024 >private.pem openssl req -new -key private.pem -out csr.pem openssl x509 -req -days 365 -in csr.pem -signkey private.pem -out cert.pem Good luck! ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]