/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 68 :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/ |
D | blake2b-test.c | 32 if( blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES ) < 0 || in main()
|
D | blake2b.c | 200 …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()
|
D | blake2b-ref.c | 156 …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
|
D | blake2.h | 167 …BLAKE2_API int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen…
|
D | blake2-dispatch.c | 507 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/ |
D | blake2ns.h | 7 #define blake2b PyBlake2_blake2b macro
|
/external/python/cpython3/Lib/ |
D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/external/boringssl/src/crypto/blake2/ |
D | blake2b256_tests.txt | 21 # "golang.org/x/crypto/blake2b" 31 # h, err := blake2b.New256(nil)
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 701 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/ |
D | cryptographic-hashes.rst | 259 ``"blake2b"``.
|
/external/oss-fuzz/projects/cryptofuzz/ |
D | build.sh | 45 go get golang.org/x/crypto/blake2b
|
/external/python/cpython3/Doc/tools/ |
D | susp-ignored.csv | 138 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 912 Add BLAKE2 (blake2b and blake2s) to hashlib.
|
D | 3.9.0a1.rst | 1642 sha3_512 or blake2b512 instead of blake2b.
|
/external/avb/ |
D | README.md | 434 Valid values for `HASH_ALG` above include `sha1`, `sha256`, and `blake2b-256`.
|
/external/python/cpython3/ |
D | Makefile.pre.in | 615 # blake2s is auto-generated from blake2b
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1096 BLAKE2 hash functions were added to the module. :func:`~hashlib.blake2b`
|