È possibile creare uno script per generare un certificato firmato dall'autorità di certificazione e una chiave privata archiviati rispettivamente nei file <nomefile>.crt e <nomefile>.key.

Il comando genrsa genera una chiave CA. La chiave CA deve essere crittografata. È possibile specificare un metodo di crittografia con un comando come aes256. Ad esempio
#!/bin/bash
host="www.example.com"
filename=server

openssl genrsa -out ca.key 4096
openssl req -key ca.key -new -x509 -days 365 -sha256 -extensions v3_ca -out ca.crt -subj "/C=US/ST=CA/L=Palo Alto/O=OS3/OU=Eng/CN=${host}"
openssl req -out ${filename}.csr -new -newkey rsa:2048 -nodes -keyout ${filename}.key -subj "/C=US/ST=CA/L=Palo Alto/O=OS3/OU=Eng/CN=${host}"
openssl x509 -req -days 360 -in ${filename}.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out ${filename}.crt -sha256