modified: Recovering-Keys-Without-MMGen.md

philemon 2016-12-18 20:12:02 +03:00
commit 335cd9fa28

@ -41,13 +41,13 @@ hexadecimal format, and 2) converting the hex keys to wallet interchange
We'll solve this task using standard command-line utilities available on any
Linux or other Unix-like system.
The first thing we must do is convert the key to binary form and store it in a
The first thing we must do is convert the seed to binary form and store it in a
file. For that we use 'xxd', a handy tool for converting binary to hex and vice
versa:
$ echo 456d 7f5f 1c4b fe3b c916 b875 60ae 6a3e | xxd -r -p > myseed.bin
Note that we've omitted the key's checksum.
Note that we've omitted the seed's checksum.
#### Generating the keys