Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gustavohenrique/certigen
https://github.com/gustavohenrique/certigen
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gustavohenrique/certigen
- Owner: gustavohenrique
- License: apache-2.0
- Created: 2024-06-07T23:27:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-14T17:10:16.000Z (7 months ago)
- Last Synced: 2024-06-15T03:06:46.942Z (7 months ago)
- Language: Go
- Size: 444 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 <