hashing passwords

This commit is contained in:
2024-05-11 18:43:44 +03:00
parent 7a46eae83c
commit 6b6469c419
2 changed files with 35 additions and 1 deletions

View File

@@ -1,2 +1,17 @@
# Hashing_passwords
# Hashing passwords
python hashing_passwords.py <password> [-t {sha256,sha512,md5}]
※Default hash-type is sha256
Example
```
python hashing_passwords.py nakao
< hash-type : sha256 >
63201414e0804bdc63b662bd87f0f51616ab69bd672aefe2b17fcec1ef14a995
```
```
python hashing_passwords.py nakao -t sha512
< hash-type : sha512 >
9cae3a2096c33b6049502ac923baff9649478df62eb090bac30d5c684b2f724ecaf7c3d7744ebccb49118d2ab07d615b02a7d170fd6310f815da18e09863841a
```