Home
last modified time | relevance | path

Searched refs:blake2b (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Modules/_blake2/
H A Dblake2module.h11 #define blake2b PyBlake2_blake2b macro
/third_party/python/Modules/_blake2/impl/
H A Dblake2b.c53 #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 Dblake2b-ref.c156 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 Dblake2.h167 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 Dhashlib.py14 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 Dtest_hashlib.py105 '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