mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
* hashlib: add usedforsecurity in py39 * hashlib: fix positional-only args, arg names * hashlib: fix positional and keyword only args for blake * hashlib: add usedforsecurity to blake
88 lines
3.7 KiB
Python
88 lines
3.7 KiB
Python
# Stubs for hashlib
|
|
|
|
import sys
|
|
from typing import AbstractSet, Optional, Union
|
|
|
|
_DataType = Union[bytes, bytearray, memoryview]
|
|
|
|
class _Hash(object):
|
|
digest_size: int
|
|
block_size: int
|
|
|
|
# [Python documentation note] Changed in version 3.4: The name attribute has
|
|
# been present in CPython since its inception, but until Python 3.4 was not
|
|
# formally specified, so may not exist on some platforms
|
|
name: str
|
|
|
|
def __init__(self, data: _DataType = ...) -> None: ...
|
|
|
|
def copy(self) -> _Hash: ...
|
|
def digest(self) -> bytes: ...
|
|
def hexdigest(self) -> str: ...
|
|
def update(self, __data: _DataType) -> None: ...
|
|
|
|
if sys.version_info >= (3, 9):
|
|
def md5(string: _DataType = ..., *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
def sha1(string: _DataType = ..., *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
def sha224(string: _DataType = ..., *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
def sha256(string: _DataType = ..., *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
def sha384(string: _DataType = ..., *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
def sha512(string: _DataType = ..., *, usedforsecurity: bool = ...) -> _Hash: ...
|
|
elif sys.version_info >= (3, 8):
|
|
def md5(string: _DataType = ...) -> _Hash: ...
|
|
def sha1(string: _DataType = ...) -> _Hash: ...
|
|
def sha224(string: _DataType = ...) -> _Hash: ...
|
|
def sha256(string: _DataType = ...) -> _Hash: ...
|
|
def sha384(string: _DataType = ...) -> _Hash: ...
|
|
def sha512(string: _DataType = ...) -> _Hash: ...
|
|
else:
|
|
def md5(__string: _DataType = ...) -> _Hash: ...
|
|
def sha1(__string: _DataType = ...) -> _Hash: ...
|
|
def sha224(__string: _DataType = ...) -> _Hash: ...
|
|
def sha256(__string: _DataType = ...) -> _Hash: ...
|
|
def sha384(__string: _DataType = ...) -> _Hash: ...
|
|
def sha512(__string: _DataType = ...) -> _Hash: ...
|
|
|
|
def new(name: str, data: _DataType = ...) -> _Hash: ...
|
|
|
|
algorithms_guaranteed: AbstractSet[str]
|
|
algorithms_available: AbstractSet[str]
|
|
|
|
def pbkdf2_hmac(hash_name: str, password: _DataType, salt: _DataType, iterations: int, dklen: Optional[int] = ...) -> bytes: ...
|
|
|
|
if sys.version_info >= (3, 6):
|
|
class _VarLenHash(object):
|
|
digest_size: int
|
|
block_size: int
|
|
name: str
|
|
|
|
def __init__(self, data: _DataType = ...) -> None: ...
|
|
|
|
def copy(self) -> _VarLenHash: ...
|
|
def digest(self, __length: int) -> bytes: ...
|
|
def hexdigest(self, __length: int) -> str: ...
|
|
def update(self, __data: _DataType) -> None: ...
|
|
|
|
sha3_224 = _Hash
|
|
sha3_256 = _Hash
|
|
sha3_384 = _Hash
|
|
sha3_512 = _Hash
|
|
shake_128 = _VarLenHash
|
|
shake_256 = _VarLenHash
|
|
|
|
def scrypt(password: _DataType, *, salt: Optional[_DataType] = ..., n: Optional[int] = ..., r: Optional[int] = ..., p: Optional[int] = ..., maxmem: int = ..., dklen: int = ...) -> bytes: ...
|
|
|
|
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: _DataType = ..., *, digest_size: int = ..., key: _DataType = ..., salt: _DataType = ..., person: _DataType = ..., 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: _DataType = ..., *, digest_size: int = ..., key: _DataType = ..., salt: _DataType = ..., person: _DataType = ..., fanout: int = ..., depth: int = ..., leaf_size: int = ..., node_offset: int = ..., node_depth: int = ..., inner_size: int = ..., last_node: bool = ...) -> None: ...
|
|
|
|
blake2b = _BlakeHash
|
|
blake2s = _BlakeHash
|