Home
last modified time | relevance | path

Searched refs:blake2b (Results 1 – 18 of 18) 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.
294 single: blake2b, blake2s
318 .. function:: blake2b(data=b'', *, digest_size=64, key=b'', salt=b'', \
398 .. data:: blake2b.SALT_SIZE
404 .. data:: blake2b.PERSON_SIZE
410 .. data:: blake2b.MAX_KEY_SIZE
416 .. data:: blake2b.MAX_DIGEST_SIZE
429 calling the appropriate constructor function (:func:`blake2b` or
434 >>> from hashlib import blake2b
[all …]
/external/python/cpython3/Modules/_blake2/impl/
Dblake2b-test.c32 if( blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES ) < 0 || in main()
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-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
/external/python/cpython3/Modules/_blake2/
Dblake2ns.h7 #define blake2b PyBlake2_blake2b macro
/external/python/cpython3/Lib/
Dhashlib.py104 cache['blake2b'] = _blake2.blake2b
/external/boringssl/src/crypto/blake2/
Dblake2b256_tests.txt21 # "golang.org/x/crypto/blake2b"
31 # h, err := blake2b.New256(nil)
/external/python/cpython3/Lib/test/
Dtest_hashlib.py701 self.check_blake2(hashlib.blake2b, 16, 16, 64, 64, (1<<64)-1)
705 self.blake2_rfc7693(hashlib.blake2b, b2b_md_len, b2b_in_len),
/external/python/cryptography/docs/hazmat/primitives/
Dcryptographic-hashes.rst259 ``"blake2b"``.
/external/oss-fuzz/projects/cryptofuzz/
Dbuild.sh45 go get golang.org/x/crypto/blake2b
/external/python/cpython3/Doc/tools/
Dsusp-ignored.csv138 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
/external/python/cpython3/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.
/external/avb/
DREADME.md434 Valid values for `HASH_ALG` above include `sha1`, `sha256`, and `blake2b-256`.
/external/python/cpython3/
DMakefile.pre.in615 # 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`