mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-06 03:33:32 +00:00
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')
|
|
|