4 lines
316 B
Bash
Executable file
4 lines
316 B
Bash
Executable file
#!/usr/bin/env bash
|
|
DIR=$(dirname $(realpath $0));
|
|
openssl ca -config "$DIR/../etc/openssl.conf" -gencrl -keyfile "$DIR/../storage/ca/ca.key" -cert "$DIR/../storage/ca/ca.crt" -out "$DIR/../storage/ca/crl.pem";
|
|
openssl crl -inform PEM -in "$DIR/../storage/ca/crl.pem" -outform DER -out "$DIR/../storage/ca/crl.der";
|