Skip to content

Commit

Permalink
fix: drop dash from domainBase
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Jul 5, 2018
1 parent d456b82 commit 937eb11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/letsencrypt/idPrefix.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

const multihashing = require('multihashing-async')
const domainBase = require('base-x')('abcdefghijklmnopqrstuvwxyz0123456789-')
const domainBase = require('base-x')('abcdefghijklmnopqrstuvwxyz0123456789')

module.exports = function idPrefix (id, zone, cb) { // TODO: maybe refactor/drop this method as it isn't so cryptographically safe
let pref = 'id0'
Expand Down

0 comments on commit 937eb11

Please sign in to comment.