Searched refs:BLAKE2b (Results 1 – 7 of 7) sorted by relevance
/external/python/cryptography/tests/hazmat/primitives/ |
D | test_hashes.py | 123 hashes.BLAKE2b(digest_size=64)), 129 hashes.BLAKE2b(digest_size=64), 135 hashes.BLAKE2b(digest_size=65) 138 hashes.BLAKE2b(digest_size=0) 141 hashes.BLAKE2b(digest_size=-1)
|
D | test_hmac_vectors.py | 115 only_if=lambda backend: backend.hmac_supported(hashes.BLAKE2b( 123 h = hmac.HMAC(b"0" * 64, hashes.BLAKE2b(digest_size=64), backend)
|
D | test_hash_vectors.py | 156 hashes.BLAKE2b(digest_size=64)), 167 hashes.BLAKE2b(digest_size=64),
|
/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 299 * **BLAKE2b**, optimized for 64-bit platforms and produces digests of any size 330 BLAKE2b or BLAKE2s. They optionally take these general parameters: 337 * *key*: key for keyed hashing (up to 64 bytes for BLAKE2b, up to 32 bytes for 340 * *salt*: salt for randomized hashing (up to 16 bytes for BLAKE2b, up to 8 343 * *person*: personalization string (up to 16 bytes for BLAKE2b, up to 8 bytes 351 BLAKE2b 64 64 16 16 376 * *node_offset*: node offset (0 to 2**64-1 for BLAKE2b, 0 to 2**48-1 for 381 * *inner_size*: inner digest size (0 to 64 for BLAKE2b, 0 to 32 for 463 BLAKE2 has configurable size of digests up to 64 bytes for BLAKE2b and up to 32 464 bytes for BLAKE2s. For example, to replace SHA-1 with BLAKE2b without changing [all …]
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ |
D | hashes.py | 225 class BLAKE2b(object): class
|
/external/python/cryptography/docs/hazmat/primitives/ |
D | cryptographic-hashes.rst | 131 .. class:: BLAKE2b(digest_size) 133 BLAKE2b is optimized for 64-bit platforms and produces an 1 to 64-byte
|
/external/python/cryptography/ |
D | CHANGELOG.rst | 230 * Support :class:`~cryptography.hazmat.primitives.hashes.BLAKE2b` and 453 * Added support for :class:`~cryptography.hazmat.primitives.hashes.BLAKE2b` and
|