mnemonic-hash-checker: add notes on how to generate a hash safely

This commit is contained in:
Ryan Heywood 2023-08-08 10:20:57 -05:00
parent 5ee7d6a30b
commit a8213519e0
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 14 additions and 0 deletions

View File

@ -81,6 +81,20 @@
we encourage using Whonix/Tor. we encourage using Whonix/Tor.
</p> </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"> <form action="/check" method="get" enctype="multipart/form-data">
<fieldset> <fieldset>
<legend>Lookup</legend> <legend>Lookup</legend>