merge: testing → main (reconcile 2-week divergence)
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import asyncio
|
||||
from datetime import datetime, timedelta, timezone
|
||||
from typing import Optional, Any
|
||||
import jwt
|
||||
@@ -24,6 +25,15 @@ def get_password_hash(password: str) -> str:
|
||||
return _hashed.decode("utf-8")
|
||||
|
||||
|
||||
async def averify_password(plain_password: str, hashed_password: str) -> bool:
|
||||
# bcrypt is CPU-bound and ~250ms/call; keep it off the event loop.
|
||||
return await asyncio.to_thread(verify_password, plain_password, hashed_password)
|
||||
|
||||
|
||||
async def ahash_password(password: str) -> str:
|
||||
return await asyncio.to_thread(get_password_hash, password)
|
||||
|
||||
|
||||
def create_access_token(data: dict[str, Any], expires_delta: Optional[timedelta] = None) -> str:
|
||||
_to_encode: dict[str, Any] = data.copy()
|
||||
_expire: datetime
|
||||
|
||||
Reference in New Issue
Block a user