mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-29 03:04:49 -04:00
🔒 Check both username and password in security tutorial (#865)
This commit is contained in:
committed by
Sebastián Ramírez
parent
874d24181e
commit
174e7b1730
@@ -12,7 +12,7 @@ security = HTTPBasic()
|
||||
def get_current_username(credentials: HTTPBasicCredentials = Depends(security)):
|
||||
correct_username = secrets.compare_digest(credentials.username, "stanleyjobson")
|
||||
correct_password = secrets.compare_digest(credentials.password, "swordfish")
|
||||
if not correct_username and correct_password:
|
||||
if not (correct_username and correct_password):
|
||||
raise HTTPException(
|
||||
status_code=HTTP_401_UNAUTHORIZED,
|
||||
detail="Incorrect email or password",
|
||||
|
||||
Reference in New Issue
Block a user