mnemonic-hash-checker: add notes on how to generate a hash safely
This commit is contained in:
parent
5ee7d6a30b
commit
a8213519e0
|
@ -81,6 +81,20 @@
|
|||
we encourage using Whonix/Tor.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
To generate a sha256 of your hash, you can use any of the following
|
||||
commands. <b>DO NOT</b> send your mnemonic to a third-party service to
|
||||
hash it, as it would no longer be secure. Make sure you've run <code>
|
||||
unset HISTFILE</code> and <code>set +o history</code> to disable
|
||||
persisting the mnemonic to your shell history.
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li><code>printf "milk sad wage cup reward umbrella raven visa give list decorate bulb gold raise twenty fly manual stand float super gentle climb fold park" | sha256sum</code></li>
|
||||
<li><code>printf "milk sad wage cup reward umbrella raven visa give list decorate bulb gold raise twenty fly manual stand float super gentle climb fold park" | gsha256sum</code></li>
|
||||
<li><code>printf "milk sad wage cup reward umbrella raven visa give list decorate bulb gold raise twenty fly manual stand float super gentle climb fold park" | openssl sha256</code></li>
|
||||
</ul>
|
||||
|
||||
<form action="/check" method="get" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
<legend>Lookup</legend>
|
||||
|
|
Loading…
Reference in New Issue