diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/bcrypt/__init__.pyi')
-rw-r--r-- | .venv/lib/python3.12/site-packages/bcrypt/__init__.pyi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/bcrypt/__init__.pyi b/.venv/lib/python3.12/site-packages/bcrypt/__init__.pyi new file mode 100644 index 00000000..12e4a2ef --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bcrypt/__init__.pyi @@ -0,0 +1,10 @@ +def gensalt(rounds: int = 12, prefix: bytes = b"2b") -> bytes: ... +def hashpw(password: bytes, salt: bytes) -> bytes: ... +def checkpw(password: bytes, hashed_password: bytes) -> bool: ... +def kdf( + password: bytes, + salt: bytes, + desired_key_bytes: int, + rounds: int, + ignore_few_rounds: bool = False, +) -> bytes: ... |