Home
last modified time | relevance | path

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

/src/crypto/openssl/providers/implementations/kdfs/
H A Dtls1_prf.c471 EVP_MAC_CTX *ctx = NULL, *ctx_Ai = NULL; in tls1_prf_P_hash() local
482 ctx_Ai = EVP_MAC_CTX_dup(ctx_init); in tls1_prf_P_hash()
483 if (ctx_Ai == NULL) in tls1_prf_P_hash()
485 if (seed != NULL && !EVP_MAC_update(ctx_Ai, seed, seed_len)) in tls1_prf_P_hash()
490 if (!EVP_MAC_final(ctx_Ai, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash()
492 EVP_MAC_CTX_free(ctx_Ai); in tls1_prf_P_hash()
493 ctx_Ai = NULL; in tls1_prf_P_hash()
503 ctx_Ai = EVP_MAC_CTX_dup(ctx); in tls1_prf_P_hash()
504 if (ctx_Ai == NULL) in tls1_prf_P_hash()
526 EVP_MAC_CTX_free(ctx_Ai); in tls1_prf_P_hash()