Home
last modified time | relevance | path

Searched refs:blake2b (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Doc/library/
Dhashlib.rst68 :func:`sha512`, :func:`blake2b`, and :func:`blake2s`.
81 :func:`blake2b` and :func:`blake2s` were added.
284 single: blake2b, blake2s
308 .. function:: blake2b(data=b'', digest_size=64, key=b'', salt=b'', \
386 .. data:: blake2b.SALT_SIZE
392 .. data:: blake2b.PERSON_SIZE
398 .. data:: blake2b.MAX_KEY_SIZE
404 .. data:: blake2b.MAX_DIGEST_SIZE
417 calling the appropriate constructor function (:func:`blake2b` or
422 >>> from hashlib import blake2b
[all …]
/external/python/cpython3/Modules/_blake2/impl/
Dblake2.h146 …int blake2b( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t i…
153 return blake2b( out, in, key, outlen, inlen, keylen ); in blake2()
Dblake2b.c386 int blake2b( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t in… in blake2b() function
418 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 ); in crypto_hash()
440 blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES ); in main()
Dblake2b-ref.c353 int blake2b( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t in… in blake2b() function
385 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 ); in crypto_hash()
407 blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES ); in main()
/external/python/cpython3/Modules/_blake2/
Dblake2ns.h7 #define blake2b PyBlake2_blake2b macro
/external/python/cpython3/Lib/
Dhashlib.py95 cache['blake2b'] = _blake2.blake2b
/external/python/cpython3/Lib/test/
Dtest_hashlib.py602 self.check_blake2(hashlib.blake2b, 16, 16, 64, 64, (1<<64)-1)
606 self.blake2_rfc7693(hashlib.blake2b, b2b_md_len, b2b_in_len),
/external/python/cpython3/Doc/tools/
Dsusp-ignored.csv136 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
/external/python/cpython3/
DMakefile.pre.in593 # blake2s is auto-generated from blake2b
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1096 BLAKE2 hash functions were added to the module. :func:`~hashlib.blake2b`
/external/python/cpython3/Misc/
DNEWS1243 - Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib.