diff options
author | tb <> | 2019-01-18 06:51:29 +0000 |
---|---|---|
committer | tb <> | 2019-01-18 06:51:29 +0000 |
commit | fb4a09a2789629d9170734e4abf21db26759af09 (patch) | |
tree | 70c0ca15e6911a048a8bb8f91c644ab649918bf5 /src/lib/libssl/tls13_internal.h | |
parent | 27316df66bde8a25fc42bd8e033092a11ca6b46d (diff) | |
download | openbsd-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.h | 8 |
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); | |||
135 | int tls13_client_key_update_recv(struct tls13_ctx *ctx); | 135 | int tls13_client_key_update_recv(struct tls13_ctx *ctx); |
136 | int tls13_server_hello_recv(struct tls13_ctx *ctx); | 136 | int tls13_server_hello_recv(struct tls13_ctx *ctx); |
137 | int tls13_server_hello_send(struct tls13_ctx *ctx); | 137 | int tls13_server_hello_send(struct tls13_ctx *ctx); |
138 | int tls13_server_new_session_ticket_recv(struct tls13_ctx *ctx); | ||
139 | int tls13_server_new_session_ticket_send(struct tls13_ctx *ctx); | ||
140 | int tls13_server_encrypted_extensions_recv(struct tls13_ctx *ctx); | 138 | int tls13_server_encrypted_extensions_recv(struct tls13_ctx *ctx); |
141 | int tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx); | 139 | int tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx); |
142 | int tls13_server_certificate_recv(struct tls13_ctx *ctx); | 140 | int tls13_server_certificate_recv(struct tls13_ctx *ctx); |
@@ -147,10 +145,6 @@ int tls13_server_certificate_verify_send(struct tls13_ctx *ctx); | |||
147 | int tls13_server_certificate_verify_recv(struct tls13_ctx *ctx); | 145 | int tls13_server_certificate_verify_recv(struct tls13_ctx *ctx); |
148 | int tls13_server_finished_recv(struct tls13_ctx *ctx); | 146 | int tls13_server_finished_recv(struct tls13_ctx *ctx); |
149 | int tls13_server_finished_send(struct tls13_ctx *ctx); | 147 | int tls13_server_finished_send(struct tls13_ctx *ctx); |
150 | int tls13_server_key_update_recv(struct tls13_ctx *ctx); | ||
151 | int tls13_server_key_update_send(struct tls13_ctx *ctx); | ||
152 | int tls13_server_message_hash_recv(struct tls13_ctx *ctx); | ||
153 | int tls13_server_message_hash_send(struct tls13_ctx *ctx); | ||
154 | 148 | ||
155 | __END_HIDDEN_DECLS | 149 | __END_HIDDEN_DECLS |
156 | 150 | ||