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

https://github.com/hxfdarling/cert-helper

Install and Verify root CA for proxy, support windows and mac
https://github.com/hxfdarling/cert-helper

certificate installer mac root-certificate verify windows

Last synced: about 1 year ago
JSON representation

Install and Verify root CA for proxy, support windows and mac

Awesome Lists containing this project

README

          

# Cert Helper

Install and trust certificates automatically. Very useful in the use of agent software scenarios.

## Usage

### Install

```sh
npm i cert-helper
```

### install certificate

Install certification as root certificate

```js
const { certInstaller } = require('cert-helper');
certInstaller(path.resolve('./certs/root.crt'), (err) => {
if (err) {
//install error
} else {
//install success
}
});
```

### verify certificate

Check certificate is installed

```js
const { certVerify } = require('cert-helper');
certVerify(
{
certDir: path.resolve('./certs/root.crt'),
certName: 'certificate name',
},

(err) => {
if (err) {
console.info('Check cert failed!');
} else {
console.info('Check cert success!');
}
}
);
```