Searched refs:BLAKE2B_CTX (Results 1 – 4 of 4) sorted by relevance
/openssl/providers/implementations/include/prov/ |
H A D | blake2.h | 84 typedef struct blake2b_ctx_st BLAKE2B_CTX; typedef 87 BLAKE2B_CTX ctx; 96 int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P); 97 int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P, 99 int ossl_blake2b_update(BLAKE2B_CTX *c, const void *data, size_t datalen); 100 int ossl_blake2b_final(unsigned char *md, BLAKE2B_CTX *c);
|
/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 49 static ossl_inline void blake2b_set_lastblock(BLAKE2B_CTX *S) in blake2b_set_lastblock() 55 static ossl_inline void blake2b_init0(BLAKE2B_CTX *S) in blake2b_init0() 59 memset(S, 0, sizeof(BLAKE2B_CTX)); in blake2b_init0() 66 static void blake2b_init_param(BLAKE2B_CTX *S, const BLAKE2B_PARAM *P) in blake2b_init_param() 127 int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P) in ossl_blake2b_init() 137 int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P, in ossl_blake2b_init_key() 155 static void blake2b_compress(BLAKE2B_CTX *S, in blake2b_compress() 259 int ossl_blake2b_update(BLAKE2B_CTX *c, const void *data, size_t datalen) in ossl_blake2b_update() 307 int ossl_blake2b_final(unsigned char *md, BLAKE2B_CTX *c) in ossl_blake2b_final() 332 OPENSSL_cleanse(c, sizeof(BLAKE2B_CTX)); in ossl_blake2b_final()
|
/openssl/providers/implementations/macs/ |
H A D | blake2b_mac.c | 11 #define BLAKE2_CTX BLAKE2B_CTX
|
/openssl/crypto/evp/ |
H A D | legacy_blake2.c | 25 static int blake2b_init(BLAKE2B_CTX *C) in blake2b_init()
|
Completed in 7 milliseconds