Symbol: HMAC_SHA256_CTX
src/libs/compat/openbsd_wlan/crypto/hmac.c
141
HMAC_SHA256_Init(HMAC_SHA256_CTX *ctx, const u_int8_t *key, u_int key_len)
src/libs/compat/openbsd_wlan/crypto/hmac.c
168
HMAC_SHA256_Update(HMAC_SHA256_CTX *ctx, const u_int8_t *data, u_int len)
src/libs/compat/openbsd_wlan/crypto/hmac.c
174
HMAC_SHA256_Final(u_int8_t digest[SHA256_DIGEST_LENGTH], HMAC_SHA256_CTX *ctx)
src/libs/compat/openbsd_wlan/crypto/hmac.h
56
void HMAC_SHA256_Init(HMAC_SHA256_CTX *, const u_int8_t *, u_int)
src/libs/compat/openbsd_wlan/crypto/hmac.h
58
void HMAC_SHA256_Update(HMAC_SHA256_CTX *, const u_int8_t *, u_int)
src/libs/compat/openbsd_wlan/crypto/hmac.h
60
void HMAC_SHA256_Final(u_int8_t [SHA256_DIGEST_LENGTH], HMAC_SHA256_CTX *)
src/libs/compat/openbsd_wlan/net80211/ieee80211_crypto.c
359
HMAC_SHA256_CTX ctx;
src/libs/compat/openbsd_wlan/net80211/ieee80211_crypto.c
437
HMAC_SHA256_CTX ctx;
src/system/libroot/posix/crypt/pbkdf2.cpp
109
HMAC_SHA256_Final(uint8_t digest[32], HMAC_SHA256_CTX * ctx)
src/system/libroot/posix/crypt/pbkdf2.cpp
135
HMAC_SHA256_CTX PShctx, hctx;
src/system/libroot/posix/crypt/pbkdf2.cpp
157
memcpy(&hctx, &PShctx, sizeof(HMAC_SHA256_CTX));
src/system/libroot/posix/crypt/pbkdf2.cpp
183
insecure_memzero(&PShctx, sizeof(HMAC_SHA256_CTX));
src/system/libroot/posix/crypt/pbkdf2.cpp
56
HMAC_SHA256_Init(HMAC_SHA256_CTX * ctx, const void * _K, size_t Klen)
src/system/libroot/posix/crypt/pbkdf2.cpp
96
HMAC_SHA256_Update(HMAC_SHA256_CTX * ctx, const void * in, size_t len)
src/system/libroot/posix/crypt/pbkdf2.h
84
void HMAC_SHA256_Init(HMAC_SHA256_CTX *, const void *, size_t);
src/system/libroot/posix/crypt/pbkdf2.h
90
void HMAC_SHA256_Update(HMAC_SHA256_CTX *, const void *, size_t);
src/system/libroot/posix/crypt/pbkdf2.h
97
void HMAC_SHA256_Final(uint8_t[32], HMAC_SHA256_CTX *);