Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 729 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 729 Bytes

Own CA script

A script to set up a custom CA for signing server certificates. Not recommended for serious production.

Installation

$ wget https://raw.githubusercontent.com/ekohl/ownca/master/ownca
$ chmod +x ownca

Usage

Own CA can be executed from any directory and creates files the current working directory.

# generate a CA first
./ownca ca

# generate a server cert signed by this CA
./ownca cert my-server.example.com

Verify certificate

$ openssl verify -verbose -CAfile cacert.crt /path/to/my-server.example.com.crt

AUTHORS

Own CA was initially written by @iNecas and currently maintained by @ekohl.