Searched refs:blake2s (Results 1 – 10 of 10) 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. 285 single: blake2b, blake2s 313 .. function:: blake2s(data=b'', *, digest_size=32, key=b'', salt=b'', \ 388 .. data:: blake2s.SALT_SIZE 394 .. data:: blake2s.PERSON_SIZE 400 .. data:: blake2s.MAX_KEY_SIZE 406 .. data:: blake2s.MAX_DIGEST_SIZE 419 :func:`blake2s`), then update it with the data by calling :meth:`update` on the 470 >>> from hashlib import blake2b, blake2s [all …]
|
/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2s.c | 367 int blake2s( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t in… in blake2s() function 399 return blake2s( out, in, NULL, BLAKE2S_OUTBYTES, inlen, 0 ); in crypto_hash() 422 if( blake2s( hash, buf, key, BLAKE2S_OUTBYTES, i, BLAKE2S_KEYBYTES ) < 0 || in main()
|
D | blake2s-ref.c | 343 int blake2s( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t in… in blake2s() function 375 return blake2s( out, in, NULL, BLAKE2S_OUTBYTES, inlen, 0 ); in crypto_hash() 397 blake2s( hash, buf, key, BLAKE2S_OUTBYTES, i, BLAKE2S_KEYBYTES ); in main()
|
D | blake2.h | 145 …int blake2s( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t i…
|
/external/python/cpython3/Modules/_blake2/ |
D | blake2ns.h | 19 #define blake2s PyBlake2_blake2s macro
|
/external/python/cpython3/Lib/ |
D | hashlib.py | 96 cache['blake2s'] = _blake2.blake2s
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 673 self.check_blake2(hashlib.blake2s, 8, 8, 32, 32, (1<<48)-1) 677 self.blake2_rfc7693(hashlib.blake2s, b2s_md_len, b2s_in_len),
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 912 Add BLAKE2 (blake2b and blake2s) to hashlib.
|
/external/python/cpython3/ |
D | Makefile.pre.in | 603 # blake2s is auto-generated from blake2b
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1097 and :func:`~hashlib.blake2s` are always available and support the full
|