A handful of wrappers around OpenSSL commands for Node.js
Install with npm: npm install ssl-utils --save
var ssl = require('ssl-utils');
//// generate a new SSL certificate and key ////
var csr = {
subject: {
C: 'US',
ST: 'FL',
L: 'Hollywood',
O: 'es128',
OU: 'me',
CN: 'www.domain.name'
}
// subjectaltname could also be added
};
ssl.generateCertBuffer(
'myCert', /*temp filename prefix*/
false, /*whether to keep temp files*/
csr, /*cert info, see above*/
caKeyPath, /*path to CA signer's key*/
caCertPath, /*path to CA signer's cert*/
function (err, key, cert, fingerprint, hash) { /*callback*/}
);
//// check the validity of a cert/key pair ////
var cert = certContents; //String or Buffer
ssl.checkCertificateExpiration(cert, function (expiry) {
//expiry is a Date instance
var remainingTime = expiry.getTime() - Date.now();
});
Generates a new ssl certificate and private key, signed by the provided certificate authority.
- prefix:
String
prefix to use when naming temp files - keepTmp:
Boolean
whether temp files should be automatically deleted - certInfo:
Object
identity info to embed in the certificate- subject: required child object with
C
(Country),ST
(State),L
(Locality),O
(Organization),OU
(Organizational Unit),CN
(Common Name) - subjectaltname: optional string, comma-separated list of alt names for the certificate such
as
DNS:foo.domain.name, DNS:bar.domain.name, DNS:localhost, IP:127.0.0.1
- subject: required child object with
- caKeyPath:
String
path to the certificate authority's private key pem file - caCertPath:
String
path to the certificate authority's certificate pem file - callback:
Function
in the form ofcallback(err, keyBuffer, certBuffer)
Same as generateCertBuffer
except it returns file paths to the temp files for the key and cert
instead of buffers.
Sets how many days from now a generated certificate should expire. If not set, openssl's default or local settings will be used.
createKeypair
, createCertRequestConfig
, createExtensionsFile
, createCertRequest
, and
createCert
are used by the above methods in the generation process, but are also exported and
can be used directly. Check the
generate.js
source code for
the method signatures.
Parses a provided certificate's expiration date.
- cert:
String|Buffer
contents of the certificate pem file - callback:
Function
in the form ofcallback(err, certExpiry)
where certExpiry is aDate
instance.
Checks the validity of a provided certificate and private key, as well as whether they match.
- cert:
String|Buffer
contents of the certificate - key:
String|Buffer
contents of the private key - options:
Object
- to verify the certificate against a specific certificate authority, pass the path the CA file in
options.CAfile
- to use Key password, pass the password in
options.pass
- to verify the certificate against a specific certificate authority, pass the path the CA file in
- callback:
Function
in the form ofcallback(err, result)
whereresult
is an object containingcertStatus
,keyStatus
, andmatch
- result.certStatus:
Object
containingBoolean
propertiesvalid
,verifiedCA
, andselfSigned
as well asoutput
containing the raw output from OpenSSL - result.keyStatus:
Object
containingvalid
andoutput
- result.match:
Boolean
whether the cert's and key's modulus values match
- result.certStatus:
verifyCertificate
, verifyKey
, compareModuli
are used by verifyCertificateKey
, but are also
exported and can be used directly. Check the
verify.js
source code for
the method signatures.
The certificate generation code was derived from certgen.