├── .gitignore ├── .min-wd ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures.json ├── index.js └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | coverage 3 | node_modules 4 | *.rdb 5 | *.log 6 | -------------------------------------------------------------------------------- /.min-wd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/.min-wd -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .min-wd 3 | .gitignore 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/test/fixtures.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atomicwallet/bip38/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui bdd 3 | --timeout 7000 --------------------------------------------------------------------------------