Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Dhashlib.rst68 :func:`sha512`, :func:`blake2b`, and :func:`blake2s`.
81 :func:`blake2b` and :func:`blake2s` were added.
300 single: blake2b, blake2s
324 .. function:: blake2b(data=b'', *, digest_size=64, key=b'', salt=b'', \
404 .. data:: blake2b.SALT_SIZE
410 .. data:: blake2b.PERSON_SIZE
416 .. data:: blake2b.MAX_KEY_SIZE
422 .. data:: blake2b.MAX_DIGEST_SIZE
435 calling the appropriate constructor function (:func:`blake2b` or
440 >>> from hashlib import blake2b
[all …]
/third_party/python/Modules/_blake2/impl/
Dblake2b.c200 …int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke…
403 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2b() function
434 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 ); in crypto_hash()
Dblake2b-test.c32 if( blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES ) < 0 || in main()
Dblake2b-ref.c156 …int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke…
351 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2b() function
Dblake2.h167 …BLAKE2_API int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen…
Dblake2-dispatch.c507 BLAKE2_API int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen,… in blake2b() function
/third_party/python/Modules/_blake2/
Dblake2ns.h7 #define blake2b PyBlake2_blake2b macro
/third_party/python/Lib/
Dhashlib.py104 cache['blake2b'] = _blake2.blake2b
/third_party/python/Lib/test/
Dtest_hashlib.py703 self.check_blake2(hashlib.blake2b, 16, 16, 64, 64, (1<<64)-1)
707 self.blake2_rfc7693(hashlib.blake2b, b2b_md_len, b2b_in_len),
/third_party/python/Doc/tools/
Dsusp-ignored.csv137 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
/third_party/python/Misc/NEWS.d/
D3.6.0b1.rst912 Add BLAKE2 (blake2b and blake2s) to hashlib.
D3.9.0a1.rst1642 sha3_512 or blake2b512 instead of blake2b.
/third_party/python/
DMakefile.pre.in614 # blake2s is auto-generated from blake2b
/third_party/python/Doc/whatsnew/
D3.6.rst1096 BLAKE2 hash functions were added to the module. :func:`~hashlib.blake2b`
/third_party/openssl/
DCHANGES.md3896 * Add support for blake2b and blake2s