Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/ssl/statem/
H A Dstatem_clnt.c2626 OPENSSL_free(s->pha_context); in tls_process_certificate_request()
2627 s->pha_context = NULL; in tls_process_certificate_request()
2631 !PACKET_memdup(&reqctx, &s->pha_context, &s->pha_context_len)) { in tls_process_certificate_request()
3799 if (s->pha_context == NULL) { in tls_construct_client_certificate()
3805 } else if (!WPACKET_sub_memcpy_u8(pkt, s->pha_context, s->pha_context_len)) { in tls_construct_client_certificate()
3874 if (sc->pha_context == NULL) { in tls_construct_client_compressed_certificate()
3878 } else if (!WPACKET_sub_memcpy_u8(&tmppkt, sc->pha_context, sc->pha_context_len)) in tls_construct_client_compressed_certificate()
H A Dstatem_srvr.c2852 OPENSSL_free(s->pha_context); in tls_construct_certificate_request()
2854 if ((s->pha_context = OPENSSL_malloc(s->pha_context_len)) == NULL) { in tls_construct_certificate_request()
2860 s->pha_context, s->pha_context_len, 0) <= 0 in tls_construct_certificate_request()
2861 || !WPACKET_sub_memcpy_u8(pkt, s->pha_context, in tls_construct_certificate_request()
3657 || (s->pha_context == NULL && PACKET_remaining(&context) != 0) in tls_process_client_certificate()
3658 || (s->pha_context != NULL in tls_process_client_certificate()
3659 && !PACKET_equal(&context, s->pha_context, in tls_process_client_certificate()
H A Dstatem_lib.c1217 if (sc->pha_context == NULL) { in tls_process_rpk()
1223 if (!PACKET_equal(&context, sc->pha_context, sc->pha_context_len)) { in tls_process_rpk()
/freebsd/crypto/openssl/ssl/
H A Dssl_local.h1787 uint8_t* pha_context; member
H A Dssl_lib.c1513 OPENSSL_free(s->pha_context); in ossl_ssl_connection_free()