blob: 640e913571a83141f317f1f0e9e959367311ed9d (
plain)
1
2
3
4
5
6
7
|
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: ...
|