Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bimedia-fr/ca-splitter
Split CA chain to array of CA
https://github.com/bimedia-fr/ca-splitter
Last synced: 23 days ago
JSON representation
Split CA chain to array of CA
- Host: GitHub
- URL: https://github.com/bimedia-fr/ca-splitter
- Owner: bimedia-fr
- License: apache-2.0
- Created: 2016-09-23T13:00:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-25T22:16:19.000Z (almost 6 years ago)
- Last Synced: 2024-12-15T21:06:44.015Z (about 1 month ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ca-splitter
Split CA chain to array of CA### Installation
```javascript
npm install ca-splitter --save
```### Usage
```javascript
var caSplitter = require('ca-splitter');var caList = caSplitter.parsePathSync([
'path1/certs_chain.pem',
'path2/certificate.pem'
]);
```