Skip to content

Instantly share code, notes, and snippets.

@Hunam6
Last active April 6, 2024 02:45
Show Gist options
  • Save Hunam6/45ddf6f29e88af2d137efdded899cb25 to your computer and use it in GitHub Desktop.
Save Hunam6/45ddf6f29e88af2d137efdded899cb25 to your computer and use it in GitHub Desktop.

Revisions

  1. Hunam6 renamed this gist Apr 6, 2024. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions gistfile1.txt → howto.md
    Original file line number Diff line number Diff line change
    @@ -1,17 +1,23 @@
    # Windows

    Open *Command Prompt*.

    Paste this command and replace `your-password` with your password.

    `echo|set /p="your-password" > %TMP%/hash.txt | certutil -hashfile %TMP%/hash.txt SHA256 | findstr /v "hash"`

    # MacOS

    Open *Terminal*.

    Paste this command and replace `your-password` with your password.

    `echo -n 'your-password' | shasum -a 256`

    # Linux

    Open your terminal.

    Paste this command and replace `your-password` with your password.

    `echo -n 'your-password' | sha256sum`
  2. Hunam6 created this gist Apr 6, 2024.
    17 changes: 17 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    # Windows

    Open *Command Prompt*.
    Paste this command and replace `your-password` with your password.
    `echo|set /p="your-password" > %TMP%/hash.txt | certutil -hashfile %TMP%/hash.txt SHA256 | findstr /v "hash"`

    # MacOS

    Open *Terminal*.
    Paste this command and replace `your-password` with your password.
    `echo -n 'your-password' | shasum -a 256`

    # Linux

    Open your terminal.
    Paste this command and replace `your-password` with your password.
    `echo -n 'your-password' | sha256sum`