Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/castaglia/cert-tool
Command-line Perl script for managing X509 certs/keys
https://github.com/castaglia/cert-tool
cacert certificate csr openssl perl
Last synced: 3 months ago
JSON representation
Command-line Perl script for managing X509 certs/keys
- Host: GitHub
- URL: https://github.com/castaglia/cert-tool
- Owner: Castaglia
- Created: 2012-04-09T20:58:56.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2019-02-24T20:07:44.000Z (almost 6 years ago)
- Last Synced: 2024-10-09T19:51:33.861Z (3 months ago)
- Topics: cacert, certificate, csr, openssl, perl
- Language: Perl
- Homepage:
- Size: 12.7 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cert-tool
=========Synopsis
--------
This `cert-tool` Perl script provides command-line options for generating
certs/keys using the OpenSSL command-line tools and config file.For further module documentation, see cert-tool.html.
Usage
-----
Commands for creating a CA, server certificate, and client certificate:$ ./cert-tool --create-ca=myca --combined \
--signing-ca=self$ ./cert-tool --create-cert=myserver --combined \
--signing-ca=myca.pem --signing-key=myca.pem$ ./cert-tool --create-cert=myclient --combined \
--signing-ca=myca.pem --signing-key=myca.pemThat's it. You should now have your certificates _combined_ with their
private keys into PEM files: `myca.pem`, `myserver.pem`, and `myclient.pem`.