Files
courses/py3interm/venv/Lib/site-packages/bcrypt/_bcrypt.pyi
T
2025-05-20 11:57:43 -04:00

8 lines
214 B
Python

import typing
def encode_base64(data: bytes) -> bytes: ...
def hashpass(password: bytes, salt: bytes) -> bytes: ...
def pbkdf(
password: bytes, salt: bytes, rounds: int, desired_key_bytes: int
) -> bytes: ...