summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/tls13_server.c')
-rw-r--r--src/lib/libssl/tls13_server.c125
1 files changed, 124 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_server.c b/src/lib/libssl/tls13_server.c
index 8d484fcb45..56ad5f8faa 100644
--- a/src/lib/libssl/tls13_server.c
+++ b/src/lib/libssl/tls13_server.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_server.c,v 1.1 2019/11/17 06:35:30 jsing Exp $ */ 1/* $OpenBSD: tls13_server.c,v 1.2 2019/11/17 06:43:46 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -77,3 +77,126 @@ tls13_legacy_accept(SSL *ssl)
77 77
78 return tls13_legacy_return_code(ssl, ret); 78 return tls13_legacy_return_code(ssl, ret);
79} 79}
80
81int
82tls13_client_hello_recv(struct tls13_ctx *ctx)
83{
84 return 0;
85}
86
87int
88tls13_client_hello_retry_send(struct tls13_ctx *ctx)
89{
90 return 0;
91}
92
93int
94tls13_server_hello_retry_recv(struct tls13_ctx *ctx)
95{
96 return 0;
97}
98
99int
100tls13_client_hello_retry_recv(struct tls13_ctx *ctx)
101{
102 return 0;
103}
104
105
106int
107tls13_client_end_of_early_data_send(struct tls13_ctx *ctx)
108{
109 return 0;
110}
111
112int
113tls13_client_end_of_early_data_recv(struct tls13_ctx *ctx)
114{
115 return 0;
116}
117
118int
119tls13_client_certificate_send(struct tls13_ctx *ctx)
120{
121 return 0;
122}
123
124int
125tls13_client_certificate_recv(struct tls13_ctx *ctx)
126{
127 return 0;
128}
129
130int
131tls13_client_certificate_verify_send(struct tls13_ctx *ctx)
132{
133 return 0;
134}
135
136int
137tls13_client_certificate_verify_recv(struct tls13_ctx *ctx)
138{
139 return 0;
140}
141
142int
143tls13_client_finished_recv(struct tls13_ctx *ctx)
144{
145 return 0;
146}
147
148int
149tls13_client_key_update_send(struct tls13_ctx *ctx)
150{
151 return 0;
152}
153
154int
155tls13_client_key_update_recv(struct tls13_ctx *ctx)
156{
157 return 0;
158}
159
160int
161tls13_server_hello_send(struct tls13_ctx *ctx)
162{
163 ctx->handshake_stage.hs_type |= NEGOTIATED;
164
165 return 0;
166}
167
168int
169tls13_server_hello_retry_send(struct tls13_ctx *ctx)
170{
171 return 0;
172}
173
174int
175tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx)
176{
177 return 0;
178}
179
180int
181tls13_server_certificate_send(struct tls13_ctx *ctx)
182{
183 return 0;
184}
185
186int
187tls13_server_certificate_request_send(struct tls13_ctx *ctx)
188{
189 return 0;
190}
191
192int
193tls13_server_certificate_verify_send(struct tls13_ctx *ctx)
194{
195 return 0;
196}
197
198int
199tls13_server_finished_send(struct tls13_ctx *ctx)
200{
201 return 0;
202}