status-desktop/scripts/password-hash.py

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')