mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
168 lines
4.9 KiB
Python
168 lines
4.9 KiB
Python
import sys
|
|
from _typeshed import ReadableBuffer
|
|
from collections.abc import Callable, Set as AbstractSet
|
|
from typing import Protocol, final
|
|
from typing_extensions import Self
|
|
|
|
if sys.version_info >= (3, 11):
|
|
__all__ = (
|
|
"md5",
|
|
"sha1",
|
|
"sha224",
|
|
"sha256",
|
|
"sha384",
|
|
"sha512",
|
|
"blake2b",
|
|
"blake2s",
|
|
"sha3_224",
|
|
"sha3_256",
|
|
"sha3_384",
|
|
"sha3_512",
|
|
"shake_128",
|
|
"shake_256",
|
|
"new",
|
|
"algorithms_guaranteed",
|
|
"algorithms_available",
|
|
"pbkdf2_hmac",
|
|
"file_digest",
|
|
)
|
|
else:
|
|
__all__ = (
|
|
"md5",
|
|
"sha1",
|
|
"sha224",
|
|
"sha256",
|
|
"sha384",
|
|
"sha512",
|
|
"blake2b",
|
|
"blake2s",
|
|
"sha3_224",
|
|
"sha3_256",
|
|
"sha3_384",
|
|
"sha3_512",
|
|
"shake_128",
|
|
"shake_256",
|
|
"new",
|
|
"algorithms_guaranteed",
|
|
"algorithms_available",
|
|
"pbkdf2_hmac",
|
|
)
|
|
|
|
class _Hash:
|
|
@property
|
|
def digest_size(self) -> int: ...
|
|
@property
|
|
def block_size(self) -> int: ...
|
|
@property
|
|
def name(self) -> str: ...
|
|
def __init__(self, data: ReadableBuffer = ...) -> None: ...
|
|
def copy(self) -> Self: ...
|
|
def digest(self) -> bytes: ...
|
|
def hexdigest(self) -> str: ...
|
|
def update(self, data: ReadableBuffer, /) -> None: ...
|
|
|
|
if sys.version_info >= (3, 9):
|
|
def new(name: str, data: ReadableBuffer = b"", *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
def md5(string: ReadableBuffer = b"", *, usedforsecurity: bool = True) -> _Hash: ...
|
|
def sha1(string: ReadableBuffer = b"", *, usedforsecurity: bool = True) -> _Hash: ...
|
|
def sha224(string: ReadableBuffer = b"", *, usedforsecurity: bool = True) -> _Hash: ...
|
|
def sha256(string: ReadableBuffer = b"", *, usedforsecurity: bool = True) -> _Hash: ...
|
|
def sha384(string: ReadableBuffer = b"", *, usedforsecurity: bool = True) -> _Hash: ...
|
|
def sha512(string: ReadableBuffer = b"", *, usedforsecurity: bool = True) -> _Hash: ...
|
|
|
|
else:
|
|
def new(name: str, data: ReadableBuffer = b"") -> _Hash: ...
|
|
def md5(string: ReadableBuffer = b"") -> _Hash: ...
|
|
def sha1(string: ReadableBuffer = b"") -> _Hash: ...
|
|
def sha224(string: ReadableBuffer = b"") -> _Hash: ...
|
|
def sha256(string: ReadableBuffer = b"") -> _Hash: ...
|
|
def sha384(string: ReadableBuffer = b"") -> _Hash: ...
|
|
def sha512(string: ReadableBuffer = b"") -> _Hash: ...
|
|
|
|
algorithms_guaranteed: AbstractSet[str]
|
|
algorithms_available: AbstractSet[str]
|
|
|
|
def pbkdf2_hmac(
|
|
hash_name: str, password: ReadableBuffer, salt: ReadableBuffer, iterations: int, dklen: int | None = None
|
|
) -> bytes: ...
|
|
|
|
class _VarLenHash:
|
|
digest_size: int
|
|
block_size: int
|
|
name: str
|
|
def __init__(self, data: ReadableBuffer = ...) -> None: ...
|
|
def copy(self) -> _VarLenHash: ...
|
|
def digest(self, length: int, /) -> bytes: ...
|
|
def hexdigest(self, length: int, /) -> str: ...
|
|
def update(self, data: ReadableBuffer, /) -> None: ...
|
|
|
|
sha3_224 = _Hash
|
|
sha3_256 = _Hash
|
|
sha3_384 = _Hash
|
|
sha3_512 = _Hash
|
|
shake_128 = _VarLenHash
|
|
shake_256 = _VarLenHash
|
|
|
|
def scrypt(
|
|
password: ReadableBuffer, *, salt: ReadableBuffer, n: int, r: int, p: int, maxmem: int = 0, dklen: int = 64
|
|
) -> bytes: ...
|
|
@final
|
|
class _BlakeHash(_Hash):
|
|
MAX_DIGEST_SIZE: int
|
|
MAX_KEY_SIZE: int
|
|
PERSON_SIZE: int
|
|
SALT_SIZE: int
|
|
|
|
if sys.version_info >= (3, 9):
|
|
def __init__(
|
|
self,
|
|
data: ReadableBuffer = ...,
|
|
/,
|
|
*,
|
|
digest_size: int = ...,
|
|
key: ReadableBuffer = ...,
|
|
salt: ReadableBuffer = ...,
|
|
person: ReadableBuffer = ...,
|
|
fanout: int = ...,
|
|
depth: int = ...,
|
|
leaf_size: int = ...,
|
|
node_offset: int = ...,
|
|
node_depth: int = ...,
|
|
inner_size: int = ...,
|
|
last_node: bool = ...,
|
|
usedforsecurity: bool = ...,
|
|
) -> None: ...
|
|
else:
|
|
def __init__(
|
|
self,
|
|
data: ReadableBuffer = ...,
|
|
/,
|
|
*,
|
|
digest_size: int = ...,
|
|
key: ReadableBuffer = ...,
|
|
salt: ReadableBuffer = ...,
|
|
person: ReadableBuffer = ...,
|
|
fanout: int = ...,
|
|
depth: int = ...,
|
|
leaf_size: int = ...,
|
|
node_offset: int = ...,
|
|
node_depth: int = ...,
|
|
inner_size: int = ...,
|
|
last_node: bool = ...,
|
|
) -> None: ...
|
|
|
|
blake2b = _BlakeHash
|
|
blake2s = _BlakeHash
|
|
|
|
if sys.version_info >= (3, 11):
|
|
class _BytesIOLike(Protocol):
|
|
def getbuffer(self) -> ReadableBuffer: ...
|
|
|
|
class _FileDigestFileObj(Protocol):
|
|
def readinto(self, buf: bytearray, /) -> int: ...
|
|
def readable(self) -> bool: ...
|
|
|
|
def file_digest(
|
|
fileobj: _BytesIOLike | _FileDigestFileObj, digest: str | Callable[[], _Hash], /, *, _bufsize: int = 262144
|
|
) -> _Hash: ...
|