2023-01-16 11:36:39 +00:00
|
|
|
import pyperclip
|
2023-06-20 15:27:47 +00:00
|
|
|
from common import PasswordFunctions
|
2023-01-16 11:36:39 +00:00
|
|
|
|
|
|
|
print("Type your password...")
|
|
|
|
password = input()
|
2023-06-20 15:27:47 +00:00
|
|
|
hash = PasswordFunctions.hash_password(password)
|
2023-01-16 11:36:39 +00:00
|
|
|
pyperclip.copy(hash)
|
2023-05-01 20:32:36 +00:00
|
|
|
print(f'Hash: {hash} is copied to clipboard')
|
2023-06-20 15:27:47 +00:00
|
|
|
|