8000 GitHub - ww9rivers/cert-tools: Tools for managing TLS certs.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ww9rivers/cert-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cert-tools

A package for SSL/TLS certificate management aims to use the InCommon Certificate Manager API functions.

Currently, this package uses openssl for key, certificate signing request (CSR) generation.

Commands

Commands in this package includes all functions needed to create, renew, replace, and revoke a certificate.

build

To run a build of the cert for a given host.

CLI Tool Usage

The package includes some command line tools.

CSR and key generation

src/csr-cli.js --help

Configuration

A configuration file may be placed in etc/config.json file, in JSON format, to configure how this suite of tools behave.

CSR Generation

"csr": {
	"req": {
		"default_bits": 4096,
		"default_md": "sha256",
		"req_extensions": "req_ext",
		"distinguished_name": "dn",
		"prompt": "no",
		"encrypt_key": "no"
	},
	"req_ext": {
		"subjectAltName": "@alt_names"
	},
	"dn": {
		"C": "US",
		"ST": "<State>",
		"L": "<City>",
		"O": "<Company Name>",
		"OU": "<Department>",
		"emailAddress": "<OU-email-address>",
		"CN": "<hostname>"
	}
}

Author

About

Tools for managing TLS certs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0