Home
last modified time | relevance | path

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

/dragonfly/crypto/libressl/ssl/
H A Dtls13_lib.c520 if (ctx->hs->tls13.clienthello_md_ctx != NULL) in tls13_clienthello_hash_init()
522 if ((ctx->hs->tls13.clienthello_md_ctx = EVP_MD_CTX_new()) == NULL) in tls13_clienthello_hash_init()
524 if (!EVP_DigestInit_ex(ctx->hs->tls13.clienthello_md_ctx, in tls13_clienthello_hash_init()
539 EVP_MD_CTX_free(hs->clienthello_md_ctx); in tls13_clienthello_hash_clear()
540 hs->clienthello_md_ctx = NULL; in tls13_clienthello_hash_clear()
562 if (!EVP_DigestFinal_ex(ctx->hs->tls13.clienthello_md_ctx, in tls13_clienthello_hash_finalize()
566 EVP_MD_CTX_free(ctx->hs->tls13.clienthello_md_ctx); in tls13_clienthello_hash_finalize()
567 ctx->hs->tls13.clienthello_md_ctx = NULL; in tls13_clienthello_hash_finalize()
580 if (!EVP_DigestFinal_ex(ctx->hs->tls13.clienthello_md_ctx, in tls13_clienthello_hash_validate()
583 EVP_MD_CTX_free(ctx->hs->tls13.clienthello_md_ctx); in tls13_clienthello_hash_validate()
[all …]
H A Dssl_locl.h579 EVP_MD_CTX *clienthello_md_ctx; member