├── .travis.yml ├── LICENSE ├── README.md ├── markdownlint.json ├── slip-0000.md ├── slip-0010.md ├── slip-0010 ├── test.py └── testvectors.py ├── slip-0011.md ├── slip-0012.md ├── slip-0013.md ├── slip-0014-addresses.md ├── slip-0014.md ├── slip-0015.md ├── slip-0015 ├── 1_masterkey.py ├── 2_accountkey.py ├── 3_decrypt.py └── 4_encrypt.py ├── slip-0016.md ├── slip-0017.md ├── slip-0032.md ├── slip-0039.md ├── slip-0039 ├── curve.png ├── passphrase.png ├── secret_sharing_1.png ├── secret_sharing_2.png ├── secret_sharing_3.png ├── secret_sharing_4.png └── wordlist.txt ├── slip-0044.md ├── slip-0048.md ├── slip-0048 └── testvectors.py ├── slip-0132.md └── slip-0173.md /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/README.md -------------------------------------------------------------------------------- /markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/markdownlint.json -------------------------------------------------------------------------------- /slip-0000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0000.md -------------------------------------------------------------------------------- /slip-0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0010.md -------------------------------------------------------------------------------- /slip-0010/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0010/test.py -------------------------------------------------------------------------------- /slip-0010/testvectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0010/testvectors.py -------------------------------------------------------------------------------- /slip-0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0011.md -------------------------------------------------------------------------------- /slip-0012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0012.md -------------------------------------------------------------------------------- /slip-0013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0013.md -------------------------------------------------------------------------------- /slip-0014-addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0014-addresses.md -------------------------------------------------------------------------------- /slip-0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0014.md -------------------------------------------------------------------------------- /slip-0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0015.md -------------------------------------------------------------------------------- /slip-0015/1_masterkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0015/1_masterkey.py -------------------------------------------------------------------------------- /slip-0015/2_accountkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0015/2_accountkey.py -------------------------------------------------------------------------------- /slip-0015/3_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0015/3_decrypt.py -------------------------------------------------------------------------------- /slip-0015/4_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0015/4_encrypt.py -------------------------------------------------------------------------------- /slip-0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0016.md -------------------------------------------------------------------------------- /slip-0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0017.md -------------------------------------------------------------------------------- /slip-0032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0032.md -------------------------------------------------------------------------------- /slip-0039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039.md -------------------------------------------------------------------------------- /slip-0039/curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/curve.png -------------------------------------------------------------------------------- /slip-0039/passphrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/passphrase.png -------------------------------------------------------------------------------- /slip-0039/secret_sharing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/secret_sharing_1.png -------------------------------------------------------------------------------- /slip-0039/secret_sharing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/secret_sharing_2.png -------------------------------------------------------------------------------- /slip-0039/secret_sharing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/secret_sharing_3.png -------------------------------------------------------------------------------- /slip-0039/secret_sharing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/secret_sharing_4.png -------------------------------------------------------------------------------- /slip-0039/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0039/wordlist.txt -------------------------------------------------------------------------------- /slip-0044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0044.md -------------------------------------------------------------------------------- /slip-0048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0048.md -------------------------------------------------------------------------------- /slip-0048/testvectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0048/testvectors.py -------------------------------------------------------------------------------- /slip-0132.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0132.md -------------------------------------------------------------------------------- /slip-0173.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/slips/HEAD/slip-0173.md --------------------------------------------------------------------------------