├── .gitignore ├── .styleci.yml ├── LICENSE ├── composer.json ├── data ├── README.md ├── en.txt ├── es.txt ├── fr.txt ├── it.txt ├── ja.txt ├── ko.txt └── zh.txt ├── phpunit.xml.dist ├── readme.md └── src ├── Bip39.php ├── Buffer └── BitBuffer.php └── Util ├── Entropy.php ├── Hash.php └── WordList.php /.gitignore: -------------------------------------------------------------------------------- 1 | /sandbox 2 | /vendor 3 | /composer.lock 4 | .idea/ 5 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/composer.json -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/README.md -------------------------------------------------------------------------------- /data/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/en.txt -------------------------------------------------------------------------------- /data/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/es.txt -------------------------------------------------------------------------------- /data/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/fr.txt -------------------------------------------------------------------------------- /data/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/it.txt -------------------------------------------------------------------------------- /data/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/ja.txt -------------------------------------------------------------------------------- /data/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/ko.txt -------------------------------------------------------------------------------- /data/zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/data/zh.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/readme.md -------------------------------------------------------------------------------- /src/Bip39.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/src/Bip39.php -------------------------------------------------------------------------------- /src/Buffer/BitBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/src/Buffer/BitBuffer.php -------------------------------------------------------------------------------- /src/Util/Entropy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/src/Util/Entropy.php -------------------------------------------------------------------------------- /src/Util/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/src/Util/Hash.php -------------------------------------------------------------------------------- /src/Util/WordList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocker-solutions/bip39/HEAD/src/Util/WordList.php --------------------------------------------------------------------------------