Searched refs:blake2b (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Modules/_blake2/ |
H A D | blake2module.h | 11 #define blake2b PyBlake2_blake2b macro
|
/third_party/python/Modules/_blake2/impl/ |
H A D | blake2b.c | 53 #include "blake2b-round.h" 200 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen ); 223 /* Some sort of default parameter block initialization, for sequential blake2b */ 403 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen ) in blake2b() function 434 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 ); in crypto_hash()
|
H A D | blake2b-ref.c | 156 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen ); 351 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen ) in blake2b() function
|
H A D | blake2.h | 167 BLAKE2_API int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen );
|
/third_party/python/Lib/ |
H A D | hashlib.py | 14 md5(), sha1(), sha224(), sha256(), sha384(), sha512(), blake2b(), blake2s(), 59 'blake2b', 'blake2s', 74 # OpenSSL 1.1.0 comes with a limited implementation of blake2b/s. The OpenSSL 79 'blake2b', 'blake2s', 102 elif name in {'blake2b', 'blake2s'}: 104 cache['blake2b'] = _blake2.blake2b
|
/third_party/python/Lib/test/ |
H A D | test_hashlib.py | 105 'blake2b', 'blake2s', 130 algorithms.update({'blake2b', 'blake2s'}) 186 add_builtin_constructor('blake2b') 426 self.check_no_unicode('blake2b') 497 self.check_blocksize_name('blake2b', 128, 64) 740 self.check_blake2(hashlib.blake2b, 16, 16, 64, 64, (1<<64)-1) 744 self.blake2_rfc7693(hashlib.blake2b, b2b_md_len, b2b_in_len), 749 self.check('blake2b', b"", 755 self.check('blake2b', b"abc", 763 self.check('blake2b', [all...] |
Completed in 5 milliseconds