Last active
April 6, 2024 02:45
-
-
Save Hunam6/45ddf6f29e88af2d137efdded899cb25 to your computer and use it in GitHub Desktop.
Revisions
-
Hunam6 renamed this gist
Apr 6, 2024 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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` -
Hunam6 created this gist
Apr 6, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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`