This repository has been archived on 2024-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
burgercat/hashpass.py

4 lines
158 B
Python
Raw Normal View History

2024-04-29 21:36:42 +01:00
from werkzeug.security import generate_password_hash, check_password_hash
passwordthing = input("insert pass: ")
print(generate_password_hash(passwordthing))