Files
status-app/scripts/password-hash.py
2023-06-20 18:27:47 +03:00

10 lines
222 B
Python

import pyperclip
from common import PasswordFunctions
print("Type your password...")
password = input()
hash = PasswordFunctions.hash_password(password)
pyperclip.copy(hash)
print(f'Hash: {hash} is copied to clipboard')