Home
last modified time | relevance | path

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

/dports/net/glib-networking/glib-networking-2.66.0/tls/base/
H A Dgtlsconnection-base.c131 GMainContext *handshake_context; member
609 g_main_context_is_owner (priv->handshake_context)) in claim_op()
1296 g_assert (priv->handshake_context); in accept_or_reject_peer_certificate()
1394 g_assert (priv->handshake_context); in g_tls_connection_base_handshake_thread_verify_certificate()
1517 g_main_context_wakeup (priv->handshake_context); in sync_handshake_thread_completed()
1636 g_assert (!priv->handshake_context); in g_tls_connection_base_handshake()
1637 priv->handshake_context = g_main_context_new (); in g_tls_connection_base_handshake()
1659 g_main_context_pop_thread_default (priv->handshake_context); in g_tls_connection_base_handshake()
1782 g_assert (!priv->handshake_context); in g_tls_connection_base_handshake_async()
1851 g_assert (!priv->handshake_context); in do_implicit_handshake()
[all …]
/dports/net/scapy/scapy-2.4.5/scapy/layers/tls/crypto/
H A Dhkdf.py53 def compute_verify_data(self, basekey, handshake_context): argument
58 h.update(handshake_context)
/dports/net/scapy/scapy-2.4.5/scapy/layers/tls/
H A Dhandshake.py425 handshake_context = b""
428 handshake_context += m
429 handshake_context += p[:-hash_len - 3]
433 handshake_context)
715 handshake_context = struct.pack("B", 254)
716 handshake_context += struct.pack("B", 0)
717 handshake_context += struct.pack("B", 0)
718 handshake_context += struct.pack("B", hash_len)
721 handshake_context += digest.finalize()
722 s.handshake_messages[0] = handshake_context
H A Dautomaton_srv.py659 handshake_context = struct.pack("B", 254)
660 handshake_context += struct.pack("B", 0)
661 handshake_context += struct.pack("B", 0)
662 handshake_context += struct.pack("B", hash_len)
665 handshake_context += digest.finalize()
669 handshake_context += m[:-hash_len - 3]
671 handshake_context += m
673 handshake_context = s.handshake_messages[0][:-hash_len - 3] # noqa: E501
682 handshake_context) # noqa: E501
H A Dsession.py741 handshake_context = b"".join(self.handshake_messages)
742 return hkdf.compute_verify_data(basekey, handshake_context)
/dports/mail/dovecot/dovecot-2.3.17/src/lib-ssl-iostream/
H A Diostream-openssl.h56 void *handshake_context; member
H A Diostream-openssl.c685 if (ssl_io->handshake_callback(&error, ssl_io->handshake_context) < 0) { in openssl_iostream_handshake()
717 ssl_io->handshake_context = context; in openssl_iostream_set_handshake_callback()