Add password hashing and verification functions using bcrypt
This commit is contained in:
parent
ce71aa3ad8
commit
172f035d77
9
app/security.py
Normal file
9
app/security.py
Normal file
@ -0,0 +1,9 @@
|
||||
import bcrypt
|
||||
|
||||
|
||||
def hash_password(password: str) -> str:
|
||||
return bcrypt.hashpw(password.encode(), bcrypt.gensalt()).decode()
|
||||
|
||||
|
||||
def verify_password(plain: str, hashed: str) -> bool:
|
||||
return bcrypt.checkpw(plain.encode(), hashed.encode())
|
||||
Loading…
Reference in New Issue
Block a user