User:Lyiriyah/sha256sum expl: Difference between revisions
Jump to navigation
Jump to search
(Created page with "If you're here, you're curious about the sha256 hash on my user page. ==Reasoning== This hash acts as a verification system. It has been generated from a file on my computer that only I have and that only I know the contents of. If my account is ever suspected to be compromised, ask for that file on Discord or through my email and run it through <code>sha256sum</code>. It will not change unless I have had to verify my identity. ==How to make one== I ran these commands...") |
(linebreak) |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
==How to make one== | ==How to make one== | ||
I ran these commands on my Linux system: <code> | I ran these commands on my Linux system:<br> | ||
echo "<secret>" > .commitment | <code> | ||
echo "<secret>" > .commitment<br> | |||
sha256sum .commitment | sha256sum .commitment | ||
</code> | </code> |
Latest revision as of 15:19, 16 February 2022
If you're here, you're curious about the sha256 hash on my user page.
Reasoning
This hash acts as a verification system. It has been generated from a file on my computer that only I have and that only I know the contents of. If my account is ever suspected to be compromised, ask for that file on Discord or through my email and run it through sha256sum
. It will not change unless I have had to verify my identity.
How to make one
I ran these commands on my Linux system:
echo "<secret>" > .commitment
sha256sum .commitment
Why not a GPG key?
Not everyone knows how to use gpg
, but you can SHA256 encrypt files with no prior experience. Also, this is much simpler to set up.