Searched refs:BLAKE2S_OUTBYTES (Results 1 - 12 of 12) sorted by relevance
/third_party/python/Modules/_blake2/ |
H A D | blake2s_impl.c | 74 digest_size: int(c_default="BLAKE2S_OUTBYTES") = _blake2.blake2s.MAX_DIGEST_SIZE 110 if (digest_size <= 0 || digest_size > BLAKE2S_OUTBYTES) { in py_blake2s_new_impl() 113 BLAKE2S_OUTBYTES); in py_blake2s_new_impl() 181 if (inner_size < 0 || inner_size > BLAKE2S_OUTBYTES) { in py_blake2s_new_impl() 184 BLAKE2S_OUTBYTES); in py_blake2s_new_impl() 308 uint8_t digest[BLAKE2S_OUTBYTES]; in _blake2_blake2s_digest_impl() 329 uint8_t digest[BLAKE2S_OUTBYTES]; in _blake2_blake2s_hexdigest_impl()
|
H A D | blake2module.c | 118 ADD_INT(d, "MAX_DIGEST_SIZE", BLAKE2S_OUTBYTES); in blake2_exec() 123 PyModule_AddIntConstant(m, "BLAKE2S_MAX_DIGEST_SIZE", BLAKE2S_OUTBYTES); in blake2_exec()
|
/third_party/python/Modules/_blake2/impl/ |
H A D | blake2s.c | 203 for( int i = 0; i < BLAKE2S_OUTBYTES; ++i ) h[i] = v[i] ^ p[i]; in blake2s_init_param() 213 if ( ( !outlen ) || ( outlen > BLAKE2S_OUTBYTES ) ) return -1; in blake2s_init() 234 if ( ( !outlen ) || ( outlen > BLAKE2S_OUTBYTES ) ) return -1; in blake2s_init_key() 357 uint8_t buffer[BLAKE2S_OUTBYTES]; in blake2s_final() 392 if( !outlen || outlen > BLAKE2S_OUTBYTES ) return -1; in blake2s() 412 return blake2s( out, in, NULL, BLAKE2S_OUTBYTES, (size_t)inlen, 0 ); in crypto_hash()
|
H A D | blake2s-ref.c | 175 if ( ( !outlen ) || ( outlen > BLAKE2S_OUTBYTES ) ) return -1; in blake2s_init() 195 if ( ( !outlen ) || ( outlen > BLAKE2S_OUTBYTES ) ) return -1; in blake2s_init_key() 316 uint8_t buffer[BLAKE2S_OUTBYTES]; in blake2s_final() 352 if( !outlen || outlen > BLAKE2S_OUTBYTES ) return -1; in blake2s()
|
H A D | blake2.h | 55 BLAKE2S_OUTBYTES = 32, enumerator
|
/third_party/node/deps/openssl/openssl/providers/implementations/macs/ |
H A D | blake2s_mac.c | 14 #define BLAKE2_OUTBYTES BLAKE2S_OUTBYTES
|
/third_party/openssl/providers/implementations/macs/ |
H A D | blake2s_mac.c | 14 #define BLAKE2_OUTBYTES BLAKE2S_OUTBYTES
|
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/ |
H A D | blake2.h | 19 # define BLAKE2S_OUTBYTES 32 macro
|
/third_party/openssl/providers/implementations/include/prov/ |
H A D | blake2.h | 19 # define BLAKE2S_OUTBYTES 32 macro
|
/third_party/python/Modules/_blake2/clinic/ |
H A D | blake2s_impl.c.h | 32 int digest_size = BLAKE2S_OUTBYTES; in py_blake2s_new()
|
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A D | blake2s_prov.c | 299 uint8_t outbuffer[BLAKE2S_OUTBYTES] = {0}; in ossl_blake2s_final()
|
/third_party/openssl/providers/implementations/digests/ |
H A D | blake2s_prov.c | 299 uint8_t outbuffer[BLAKE2S_OUTBYTES] = {0}; in ossl_blake2s_final()
|
Completed in 6 milliseconds