Searched refs:blake2b (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 68 :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/ |
D | blake2.h | 146 …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()
|
D | blake2b.c | 386 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()
|
D | blake2b-ref.c | 353 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/ |
D | blake2ns.h | 7 #define blake2b PyBlake2_blake2b macro
|
/external/python/cpython3/Lib/ |
D | hashlib.py | 95 cache['blake2b'] = _blake2.blake2b
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 602 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/ |
D | susp-ignored.csv | 136 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
|
/external/python/cpython3/ |
D | Makefile.pre.in | 593 # 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`
|
/external/python/cpython3/Misc/ |
D | NEWS | 1243 - Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib.
|