@superhero/eventflow-certificates 4.4.2 → 4.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -224,7 +224,7 @@ export default class Certificates
|
|
|
224
224
|
days : Number(this.config.CERT_INTERMEDIATE_DAYS),
|
|
225
225
|
algorithm : this.config.CERT_ALGORITHM,
|
|
226
226
|
hash : this.config.CERT_HASH,
|
|
227
|
-
dns : [ '.' + UID ],
|
|
227
|
+
dns : [ '.' + UID.toLowerCase() ],
|
|
228
228
|
subject : { UID },
|
|
229
229
|
password :
|
|
230
230
|
{
|
|
@@ -242,7 +242,7 @@ export default class Certificates
|
|
|
242
242
|
days : Number(this.config.CERT_LEAF_DAYS),
|
|
243
243
|
algorithm : this.config.CERT_ALGORITHM,
|
|
244
244
|
hash : this.config.CERT_HASH,
|
|
245
|
-
dns : [ this.leafUID ],
|
|
245
|
+
dns : [ this.leafUID.toLowerCase() ],
|
|
246
246
|
subject : { UID },
|
|
247
247
|
password :
|
|
248
248
|
{
|