Sto provando a provare a generare una chiave privata e un certificato autofirmato dal mio terminale su OS X El Capitan (10.11.1) utilizzando i seguenti comandi:
openssl genrsa 1024 > private.key
openssl req -new -key private.key -out cert.csr
openssl x509 -req -in cert.csr -signkey private.key -out certificate.pem
ogni comando che eseguo restituisce il seguente messaggio di errore:
Segmentation Fault: 11
Se eseguo which openssl
, ottengo il seguente:
/usr/bin/openssl
Quindi presumo che sia stato installato correttamente. Qualcuno sa quale potrebbe essere il problema?