mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-01 00:19:22 +01:00
14 lines
305 B
Python
Executable File
14 lines
305 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
This script generated Keyoxide hashed proofs in argon2id and bcrypt
|
|
"""
|
|
|
|
PROOF = str(input("Enter the proof: "))
|
|
|
|
print(
|
|
"$argon2id$v=19$m=64,t=512,p=2$mDejbh8SmFFJPjbjf+u9kQ$yQpomARjYKfgEDAZ1jdgnA",
|
|
)
|
|
|
|
|
|
print("$2a$11$kBchZf6QkDDHNhZhd8s7iOcXCuqAz3Qawd5eG5A6RygTtDfeZ9a/y")
|