1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
import re
import typing
try:
import bcrypt
except ImportError as e: # pragma: no cover
from ..exceptions import HasherNotAvailable
raise HasherNotAvailable("bcrypt") from e
from .base import HasherProtocol, ensure_bytes, ensure_str, validate_str_or_bytes
_IDENTIFY_REGEX = (
r"^\$(?P<prefix>2[abxy])\$(?P<rounds>\d{2})"
r"\$(?P<salt>[A-Za-z0-9+/.]{22})(?P<hash>[A-Za-z0-9+/.]{31})$"
)
def _match_regex_hash(hash: str | bytes) -> re.Match[str] | None:
return re.match(_IDENTIFY_REGEX, ensure_str(hash))
class BcryptHasher(HasherProtocol):
def __init__(
self, rounds: int = 12, prefix: typing.Literal["2a", "2b"] = "2b"
) -> None:
"""
Args:
rounds: The number of rounds to use for hashing.
prefix: The prefix to use for hashing.
"""
self.rounds = rounds
self.prefix = prefix.encode("utf-8")
@classmethod
def identify(cls, hash: str | bytes) -> bool:
validate_str_or_bytes(hash, "hash")
return _match_regex_hash(hash) is not None
def hash(self, password: str | bytes, *, salt: bytes | None = None) -> str:
validate_str_or_bytes(password, "password")
if salt is None:
salt = bcrypt.gensalt(self.rounds, self.prefix)
return ensure_str(bcrypt.hashpw(ensure_bytes(password), salt))
def verify(self, password: str | bytes, hash: str | bytes) -> bool:
validate_str_or_bytes(password, "password")
validate_str_or_bytes(hash, "hash")
return bcrypt.checkpw(ensure_bytes(password), ensure_bytes(hash))
def check_needs_rehash(self, hash: str | bytes) -> bool:
validate_str_or_bytes(hash, "hash")
_hash_match = _match_regex_hash(hash)
if _hash_match is None:
return True
return int(_hash_match.group("rounds")) != self.rounds or _hash_match.group(
"prefix"
) != self.prefix.decode("utf-8")
|