mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-16 16:19:22 +01:00
12 lines
298 B
Python
12 lines
298 B
Python
|
#!/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")
|