https-cert
Advanced tools
Comparing version 1.1.1 to 1.1.2
15
index.js
@@ -60,2 +60,17 @@ var fs = require('fs') | ||
cert.setSubject(csr.subject.attributes) | ||
cert.setExtensions([ | ||
{ | ||
name: 'basicConstraints', | ||
cA: true | ||
}, | ||
{ | ||
name: 'subjectAltName', | ||
altNames: [ | ||
{ | ||
type: 2, | ||
value: domain | ||
} | ||
] | ||
} | ||
]) | ||
// issuer from CA | ||
@@ -62,0 +77,0 @@ cert.setIssuer(caCert.subject.attributes) |
{ | ||
"name": "https-cert", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "https-cert", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35330
75