mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
5b5361c9b0
* fix(scripts): fix `password-hash.py`
10 lines
222 B
Python
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')
|
|
|