Home
last modified time | relevance | path

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

/dragonfly/crypto/libressl/ssl/
H A Dtls13_internal.h267 struct tls13_ctx { struct
307 void tls13_ctx_free(struct tls13_ctx *ctx);
317 int tls13_quic_init(struct tls13_ctx *ctx);
322 int tls13_use_legacy_client(struct tls13_ctx *ctx);
323 int tls13_use_legacy_server(struct tls13_ctx *ctx);
366 int tls13_handshake_perform(struct tls13_ctx *ctx);
368 int tls13_client_init(struct tls13_ctx *ctx);
369 int tls13_server_init(struct tls13_ctx *ctx);
370 int tls13_client_connect(struct tls13_ctx *ctx);
371 int tls13_server_accept(struct tls13_ctx *ctx);
[all …]
H A Dtls13_lib.c109 struct tls13_ctx *ctx = arg; in tls13_alert_received_cb()
138 struct tls13_ctx *ctx = arg; in tls13_alert_sent_cb()
157 struct tls13_ctx *ctx = arg; in tls13_legacy_handshake_message_recv_cb()
171 struct tls13_ctx *ctx = arg; in tls13_legacy_handshake_message_sent_cb()
185 struct tls13_ctx *ctx = arg; in tls13_legacy_info_cb()
194 struct tls13_ctx *ctx = arg; in tls13_legacy_ocsp_status_recv_cb()
335 struct tls13_ctx *ctx = cb_arg; in tls13_phh_received_cb()
375 struct tls13_ctx *ctx = cb_arg; in tls13_phh_done_cb()
394 struct tls13_ctx *
397 struct tls13_ctx *ctx = NULL; in tls13_ctx_new()
[all …]
H A Dtls13_handshake.c34 int (*send)(struct tls13_ctx *ctx, CBB *cbb);
35 int (*sent)(struct tls13_ctx *ctx);
36 int (*recv)(struct tls13_ctx *ctx, CBS *cbs);
40 tls13_handshake_active_state(struct tls13_ctx *ctx);
300 tls13_handshake_active_state(struct tls13_ctx *ctx) in tls13_handshake_active_state()
313 tls13_handshake_active_action(struct tls13_ctx *ctx) in tls13_handshake_active_action()
333 tls13_handshake_end_of_flight(struct tls13_ctx *ctx, in tls13_handshake_end_of_flight()
345 tls13_handshake_msg_record(struct tls13_ctx *ctx) in tls13_handshake_msg_record()
354 tls13_handshake_perform(struct tls13_ctx *ctx) in tls13_handshake_perform()
441 tls13_handshake_send_action(struct tls13_ctx *ctx, in tls13_handshake_send_action()
[all …]
H A Dtls13_quic.c25 struct tls13_ctx *ctx = arg; in tls13_quic_wire_read_cb()
35 struct tls13_ctx *ctx = arg; in tls13_quic_wire_write_cb()
45 struct tls13_ctx *ctx = arg; in tls13_quic_wire_flush_cb()
59 struct tls13_ctx *ctx = arg; in tls13_quic_handshake_read_cb()
70 struct tls13_ctx *ctx = arg; in tls13_quic_handshake_write_cb()
86 struct tls13_ctx *ctx = arg; in tls13_quic_set_read_traffic_key()
110 struct tls13_ctx *ctx = arg; in tls13_quic_set_write_traffic_key()
133 struct tls13_ctx *ctx = arg; in tls13_quic_alert_send_cb()
163 tls13_quic_init(struct tls13_ctx *ctx) in tls13_quic_init()
H A Dtls13_server.c28 tls13_server_init(struct tls13_ctx *ctx) in tls13_server_init()
56 tls13_server_accept(struct tls13_ctx *ctx) in tls13_server_accept()
100 tls13_client_hello_required_extensions(struct tls13_ctx *ctx) in tls13_client_hello_required_extensions()
145 tls13_client_hello_process(struct tls13_ctx *ctx, CBS *cbs) in tls13_client_hello_process()
298 tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs) in tls13_client_hello_recv()
371 tls13_server_engage_record_protection(struct tls13_ctx *ctx) in tls13_server_engage_record_protection()
492 tls13_servername_process(struct tls13_ctx *ctx) in tls13_servername_process()
505 tls13_server_hello_send(struct tls13_ctx *ctx, CBB *cbb) in tls13_server_hello_send()
523 tls13_server_hello_sent(struct tls13_ctx *ctx) in tls13_server_hello_sent()
791 tls13_server_finished_send(struct tls13_ctx *ctx, CBB *cbb) in tls13_server_finished_send()
[all …]
H A Dtls13_legacy.c57 struct tls13_ctx *ctx = arg; in tls13_legacy_wire_read_cb()
94 struct tls13_ctx *ctx = arg; in tls13_legacy_wire_write_cb()
118 struct tls13_ctx *ctx = arg; in tls13_legacy_wire_flush_cb()
126 struct tls13_ctx *ctx = ssl->internal->tls13; in tls13_legacy_error()
210 struct tls13_ctx *ctx = ssl->internal->tls13; in tls13_legacy_pending()
226 struct tls13_ctx *ctx = ssl->internal->tls13; in tls13_legacy_read_bytes()
260 struct tls13_ctx *ctx = ssl->internal->tls13; in tls13_legacy_write_bytes()
317 tls13_use_legacy_stack(struct tls13_ctx *ctx) in tls13_use_legacy_stack()
382 tls13_use_legacy_client(struct tls13_ctx *ctx) in tls13_use_legacy_client()
396 tls13_use_legacy_server(struct tls13_ctx *ctx) in tls13_use_legacy_server()
[all …]
H A Dtls13_client.c28 tls13_client_init(struct tls13_ctx *ctx) in tls13_client_init()
79 tls13_client_connect(struct tls13_ctx *ctx) in tls13_client_connect()
88 tls13_client_hello_build(struct tls13_ctx *ctx, CBB *cbb) in tls13_client_hello_build()
134 tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb) in tls13_client_hello_send()
149 tls13_client_hello_sent(struct tls13_ctx *ctx) in tls13_client_hello_sent()
209 tls13_server_hello_process(struct tls13_ctx *ctx, CBS *cbs) in tls13_server_hello_process()
333 tls13_client_engage_record_protection(struct tls13_ctx *ctx) in tls13_client_engage_record_protection()
463 tls13_server_hello_recv(struct tls13_ctx *ctx, CBS *cbs) in tls13_server_hello_recv()
714 tls13_server_finished_recv(struct tls13_ctx *ctx, CBS *cbs) in tls13_server_finished_recv()
999 tls13_client_finished_send(struct tls13_ctx *ctx, CBB *cbb) in tls13_client_finished_send()
[all …]
H A Dssl_locl.h924 struct tls13_ctx *tls13;
H A Dssl_tlsext.c2297 struct tls13_ctx *ctx = s->internal->tls13; in tlsext_clienthello_hash_extension()