2018-11-27 19:56:46 -05:00
|
|
|
const words = require('./words')
|
2018-11-26 22:24:31 -05:00
|
|
|
const digits = '0123456789'
|
|
|
|
const symbols = '`~!@#$%^&*()_+-=,./<>?;:|'
|
|
|
|
|
2018-11-27 19:56:46 -05:00
|
|
|
function getWordList (name) {
|
2018-11-27 22:21:02 -05:00
|
|
|
if (['small', 'medium'].includes(name)) {
|
2018-11-26 22:24:31 -05:00
|
|
|
return words[name]
|
|
|
|
}
|
|
|
|
throw new Error(`Invalid word list: ${name}`)
|
|
|
|
}
|
|
|
|
|
2018-11-27 19:56:46 -05:00
|
|
|
function getWords (list, indices) {
|
2018-11-26 22:24:31 -05:00
|
|
|
return Array.from(indices).map(index => list[index % list.length])
|
|
|
|
}
|
|
|
|
|
2018-11-27 19:56:46 -05:00
|
|
|
function capitalize (string) {
|
2018-11-26 22:24:31 -05:00
|
|
|
return string[0].toUpperCase() + string.slice(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
function pickWords (list, number) {
|
|
|
|
const array = new Uint16Array(number)
|
|
|
|
window.crypto.getRandomValues(array)
|
|
|
|
return getWords(list, array)
|
|
|
|
}
|
|
|
|
|
|
|
|
function pickChar (options) {
|
|
|
|
const array = new Uint32Array(1)
|
|
|
|
window.crypto.getRandomValues(array)
|
|
|
|
return options[array[0] % options.length]
|
|
|
|
}
|
|
|
|
|
2018-11-27 19:56:46 -05:00
|
|
|
function generate (options) {
|
2018-11-26 22:24:31 -05:00
|
|
|
let words = pickWords(getWordList(options.list), options.count)
|
|
|
|
|
|
|
|
if (options.capitalize) {
|
|
|
|
words = words.map(capitalize)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.symbol) {
|
|
|
|
words.push(pickChar(symbols))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.digit) {
|
|
|
|
words.push(pickChar(digits))
|
|
|
|
}
|
|
|
|
|
|
|
|
return words.join('')
|
|
|
|
}
|
|
|
|
|
2018-11-27 19:56:46 -05:00
|
|
|
function lengthBits (list) {
|
2018-11-26 22:24:31 -05:00
|
|
|
return Math.log2(list.length)
|
|
|
|
}
|
|
|
|
|
2018-11-27 19:56:46 -05:00
|
|
|
function computeBits (options) {
|
2018-11-26 22:24:31 -05:00
|
|
|
const wordBits = lengthBits(getWordList(options.list))
|
|
|
|
const capsBits = options.capitalize ? 1 : 0
|
|
|
|
const symbolBits = options.symbol ? lengthBits(symbols) : 0
|
|
|
|
const digitBits = options.digit ? lengthBits(digits) : 0
|
|
|
|
|
|
|
|
return wordBits * options.count + capsBits + symbolBits + digitBits
|
|
|
|
}
|
2018-11-27 22:21:02 -05:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
getWordList, getWords, capitalize, generate, lengthBits, computeBits
|
|
|
|
}
|