Symbol: BLAKE2B_CTX
crypto/openssl/crypto/evp/legacy_blake2.c
25
static int blake2b_init(BLAKE2B_CTX *C)
crypto/openssl/providers/implementations/digests/blake2b_prov.c
125
int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P)
crypto/openssl/providers/implementations/digests/blake2b_prov.c
135
int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P,
crypto/openssl/providers/implementations/digests/blake2b_prov.c
153
static void blake2b_compress(BLAKE2B_CTX *S,
crypto/openssl/providers/implementations/digests/blake2b_prov.c
257
int ossl_blake2b_update(BLAKE2B_CTX *c, const void *data, size_t datalen)
crypto/openssl/providers/implementations/digests/blake2b_prov.c
305
int ossl_blake2b_final(unsigned char *md, BLAKE2B_CTX *c)
crypto/openssl/providers/implementations/digests/blake2b_prov.c
330
OPENSSL_cleanse(c, sizeof(BLAKE2B_CTX));
crypto/openssl/providers/implementations/digests/blake2b_prov.c
47
static ossl_inline void blake2b_set_lastblock(BLAKE2B_CTX *S)
crypto/openssl/providers/implementations/digests/blake2b_prov.c
53
static ossl_inline void blake2b_init0(BLAKE2B_CTX *S)
crypto/openssl/providers/implementations/digests/blake2b_prov.c
57
memset(S, 0, sizeof(BLAKE2B_CTX));
crypto/openssl/providers/implementations/digests/blake2b_prov.c
64
static void blake2b_init_param(BLAKE2B_CTX *S, const BLAKE2B_PARAM *P)
crypto/openssl/providers/implementations/include/prov/blake2.h
100
int ossl_blake2b_final(unsigned char *md, BLAKE2B_CTX *c);
crypto/openssl/providers/implementations/include/prov/blake2.h
87
BLAKE2B_CTX ctx;
crypto/openssl/providers/implementations/include/prov/blake2.h
96
int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P);
crypto/openssl/providers/implementations/include/prov/blake2.h
97
int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P,
crypto/openssl/providers/implementations/include/prov/blake2.h
99
int ossl_blake2b_update(BLAKE2B_CTX *c, const void *data, size_t datalen);
crypto/openssl/providers/implementations/macs/blake2b_mac.c
11
#define BLAKE2_CTX BLAKE2B_CTX