Searched refs:BLAKE2B_CTX (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 48 static ossl_inline void blake2b_set_lastblock(BLAKE2B_CTX *S) in blake2b_set_lastblock() 54 static ossl_inline void blake2b_init0(BLAKE2B_CTX *S) in blake2b_init0() 58 memset(S, 0, sizeof(BLAKE2B_CTX)); in blake2b_init0() 65 static void blake2b_init_param(BLAKE2B_CTX *S, const BLAKE2B_PARAM *P) in blake2b_init_param() 126 int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P) in ossl_blake2b_init() 136 int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P, in ossl_blake2b_init_key() 154 static void blake2b_compress(BLAKE2B_CTX *S, in blake2b_compress() 258 int ossl_blake2b_update(BLAKE2B_CTX *c, const void *data, size_t datalen) in ossl_blake2b_update() 306 int ossl_blake2b_final(unsigned char *md, BLAKE2B_CTX *c) in ossl_blake2b_final() 331 OPENSSL_cleanse(c, sizeof(BLAKE2B_CTX)); in ossl_blake2b_final()
|
H A D | blake2_prov.c | 28 return ossl_blake2b_init((BLAKE2B_CTX *)ctx, &P); in ossl_blake2b512_init() 38 IMPLEMENT_digest_functions(blake2b512, BLAKE2B_CTX,
|
/freebsd/crypto/openssl/providers/implementations/include/prov/ |
H A D | blake2.h | 83 typedef struct blake2b_ctx_st BLAKE2B_CTX; typedef 88 int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P); 89 int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P, 91 int ossl_blake2b_update(BLAKE2B_CTX *c, const void *data, size_t datalen); 92 int ossl_blake2b_final(unsigned char *md, BLAKE2B_CTX *c);
|
/freebsd/crypto/openssl/providers/implementations/macs/ |
H A D | blake2b_mac.c | 11 #define BLAKE2_CTX BLAKE2B_CTX
|