0.1.0 • Published 8 years ago

charvi v0.1.0

Weekly downloads
3
License
-
Repository
-
Last release
8 years ago

Read certificates from the Windows Cert Store from node.js.

Installation

npm i windows-certs

Usage

var certs = require('windows-certs');

certs.get({
  storeName: 'CertificateAuthority',
  storeLocation: 'LocalMachine'
}, function (err, certs) {
   console.log(certs);
});

The returned object certs is a object like this:

{
  "subject": "CN=hello.com, O=Internet Widgits Pty Ltd, S=Some-State, C=AU",
  "issuer": "foo bar",
  "thumbprint": "...",
  "pem": "-----BEGIN CERTIFICATE-----\nMIID9DCCAtygAwIBAgIJANWBEUdUZOlPMA0GCSqGSIb3DQEBBQUAMFkxCzAJBgNV..."
}

License

MIT 2015 - José F. Romaniello

0.1.0

8 years ago