Browse Source

Add wordlists: french, italian, spanish

300
Kirill Fomichev 8 years ago
parent
commit
26b9edee79
  1. 8
      index.js
  2. 2050
      wordlists/french.json
  3. 2050
      wordlists/italian.json
  4. 2050
      wordlists/spanish.json

8
index.js

@ -6,7 +6,10 @@ var randomBytes = require('randombytes')
var unorm = require('unorm') var unorm = require('unorm')
var ENGLISH_WORDLIST = require('./wordlists/english.json') var ENGLISH_WORDLIST = require('./wordlists/english.json')
var FRENCH_WORDLIST = require('./wordlists/french.json')
var ITALIAN_WORDLIST = require('./wordlists/italian.json')
var JAPANESE_WORDLIST = require('./wordlists/japanese.json') var JAPANESE_WORDLIST = require('./wordlists/japanese.json')
var SPANISH_WORDLIST = require('./wordlists/spanish.json')
var DEFAULT_WORDLIST = ENGLISH_WORDLIST var DEFAULT_WORDLIST = ENGLISH_WORDLIST
function salt (password) { function salt (password) {
@ -138,6 +141,9 @@ module.exports = {
JA: JAPANESE_WORDLIST, JA: JAPANESE_WORDLIST,
english: ENGLISH_WORDLIST, english: ENGLISH_WORDLIST,
japanese: JAPANESE_WORDLIST french: FRENCH_WORDLIST,
italian: ITALIAN_WORDLIST,
japanese: JAPANESE_WORDLIST,
spanish: SPANISH_WORDLIST
} }
} }

2050
wordlists/french.json

File diff suppressed because it is too large

2050
wordlists/italian.json

File diff suppressed because it is too large

2050
wordlists/spanish.json

File diff suppressed because it is too large
Loading…
Cancel
Save