Home
last modified time | relevance | path

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

/openbsd/src/lib/libssl/
Dtls13_lib.c664 if (ctx->hs->tls13.clienthello_md_ctx != NULL) in tls13_clienthello_hash_init()
666 if ((ctx->hs->tls13.clienthello_md_ctx = EVP_MD_CTX_new()) == NULL) in tls13_clienthello_hash_init()
668 if (!EVP_DigestInit_ex(ctx->hs->tls13.clienthello_md_ctx, in tls13_clienthello_hash_init()
683 EVP_MD_CTX_free(hs->clienthello_md_ctx); in tls13_clienthello_hash_clear()
684 hs->clienthello_md_ctx = NULL; in tls13_clienthello_hash_clear()
693 return EVP_DigestUpdate(ctx->hs->tls13.clienthello_md_ctx, data, len); in tls13_clienthello_hash_update_bytes()
706 if (!EVP_DigestFinal_ex(ctx->hs->tls13.clienthello_md_ctx, in tls13_clienthello_hash_finalize()
710 EVP_MD_CTX_free(ctx->hs->tls13.clienthello_md_ctx); in tls13_clienthello_hash_finalize()
711 ctx->hs->tls13.clienthello_md_ctx = NULL; in tls13_clienthello_hash_finalize()
724 if (!EVP_DigestFinal_ex(ctx->hs->tls13.clienthello_md_ctx, in tls13_clienthello_hash_validate()
[all …]
Dssl_local.h515 EVP_MD_CTX *clienthello_md_ctx; member