summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
authortb <>2019-01-18 06:51:29 +0000
committertb <>2019-01-18 06:51:29 +0000
commitfb4a09a2789629d9170734e4abf21db26759af09 (patch)
tree70c0ca15e6911a048a8bb8f91c644ab649918bf5 /src/lib/libssl/tls13_internal.h
parent27316df66bde8a25fc42bd8e033092a11ca6b46d (diff)
downloadopenbsd-fb4a09a2789629d9170734e4abf21db26759af09.tar.gz
openbsd-fb4a09a2789629d9170734e4abf21db26759af09.tar.bz2
openbsd-fb4a09a2789629d9170734e4abf21db26759af09.zip
Expose some symbols in a new tls13_handshake.h for regression testing.
Update the handshake state tables and flag names according to the design decisions and naming conventions in the hackroom. Garbage collect some things that turn out not to belong here. ok jsing
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index 872aced77c..e672df37e3 100644
--- a/src/lib/libssl/tls13_internal.h
+++ b/src/lib/libssl/tls13_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_internal.h,v 1.6 2019/01/17 06:32:12 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.7 2019/01/18 06:51:29 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org>
4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -135,8 +135,6 @@ int tls13_client_key_update_send(struct tls13_ctx *ctx);
135int tls13_client_key_update_recv(struct tls13_ctx *ctx); 135int tls13_client_key_update_recv(struct tls13_ctx *ctx);
136int tls13_server_hello_recv(struct tls13_ctx *ctx); 136int tls13_server_hello_recv(struct tls13_ctx *ctx);
137int tls13_server_hello_send(struct tls13_ctx *ctx); 137int tls13_server_hello_send(struct tls13_ctx *ctx);
138int tls13_server_new_session_ticket_recv(struct tls13_ctx *ctx);
139int tls13_server_new_session_ticket_send(struct tls13_ctx *ctx);
140int tls13_server_encrypted_extensions_recv(struct tls13_ctx *ctx); 138int tls13_server_encrypted_extensions_recv(struct tls13_ctx *ctx);
141int tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx); 139int tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx);
142int tls13_server_certificate_recv(struct tls13_ctx *ctx); 140int tls13_server_certificate_recv(struct tls13_ctx *ctx);
@@ -147,10 +145,6 @@ int tls13_server_certificate_verify_send(struct tls13_ctx *ctx);
147int tls13_server_certificate_verify_recv(struct tls13_ctx *ctx); 145int tls13_server_certificate_verify_recv(struct tls13_ctx *ctx);
148int tls13_server_finished_recv(struct tls13_ctx *ctx); 146int tls13_server_finished_recv(struct tls13_ctx *ctx);
149int tls13_server_finished_send(struct tls13_ctx *ctx); 147int tls13_server_finished_send(struct tls13_ctx *ctx);
150int tls13_server_key_update_recv(struct tls13_ctx *ctx);
151int tls13_server_key_update_send(struct tls13_ctx *ctx);
152int tls13_server_message_hash_recv(struct tls13_ctx *ctx);
153int tls13_server_message_hash_send(struct tls13_ctx *ctx);
154 148
155__END_HIDDEN_DECLS 149__END_HIDDEN_DECLS
156 150