Crypto / Tutorial

Creer un certificat x509

May 31, 20161 min read
openssl

La manière la plus simple pour créer un certificat x509 :

openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout test.pem -out test.pem

ou

openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout test.key -out test.cert

See https://www.openssl.org/docs/man1.0.2/apps/http://www.google.com/search?q=openssl+self-signed+certificat

openssl