Home
last modified time | relevance | path

Searched refs:blake2s_compress (Results 1 – 5 of 5) sorted by relevance

/third_party/openssl/providers/implementations/digests/
Dblake2s_prov.c147 static void blake2s_compress(BLAKE2S_CTX *S, in blake2s_compress() function
266 blake2s_compress(c, c->buf, BLAKE2S_BLOCKBYTES); in ossl_blake2s_update()
279 blake2s_compress(c, in, datalen); in ossl_blake2s_update()
311 blake2s_compress(c, c->buf, c->buflen); in ossl_blake2s_final()
/third_party/node/deps/openssl/openssl/providers/implementations/digests/
Dblake2s_prov.c147 static void blake2s_compress(BLAKE2S_CTX *S, in blake2s_compress() function
266 blake2s_compress(c, c->buf, BLAKE2S_BLOCKBYTES); in ossl_blake2s_update()
279 blake2s_compress(c, in, datalen); in ossl_blake2s_update()
311 blake2s_compress(c, c->buf, c->buflen); in ossl_blake2s_final()
/third_party/python/Modules/_blake2/impl/
Dblake2s.c266 static inline int blake2s_compress( blake2s_state *S, const uint8_t block[BLAKE2S_BLOCKBYTES] ) in blake2s_compress() function
336 blake2s_compress( S, S->buf ); // Compress in blake2s_update()
364 blake2s_compress( S, S->buf ); in blake2s_final()
372 blake2s_compress( S, S->buf ); in blake2s_final()
Dblake2s-ref.c223 static int blake2s_compress( blake2s_state *S, const uint8_t block[BLAKE2S_BLOCKBYTES] ) in blake2s_compress() function
296 blake2s_compress( S, S->buf ); // Compress in blake2s_update()
324 blake2s_compress( S, S->buf ); in blake2s_final()
332 blake2s_compress( S, S->buf ); in blake2s_final()
/third_party/python/Modules/_blake2/
Dblake2ns.h20 #define blake2s_compress PyBlake2_blake2s_compress macro