Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gustavohenrique/certigen


https://github.com/gustavohenrique/certigen

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Certgen

> Gerencia self signed certificates

## Uso

```sh
# CA
curl -XPOST -H 'content-type:application/json' \
"http://localhost:8002/certificate/ca/?download=ca.zip" \
-o "ca.zip" \
-d '{"name": "ca", "organization": "home", "team": "devs", "expires_at": "2030-01-01"}'

# Intermediate
cakey=`base64 -w0 ca.key`
cacert=`base64 -w0 ca.pem`
cat > inter_req.json < server_req.json <