From 1f6dec4ce4b7668bc62c53baba6eaa227d4a4fb0 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 17 Nov 2019 06:43:46 +0000 Subject: Move the TLSv1.3 server message handling stubs. --- src/lib/libssl/tls13_handshake.c | 125 +-------------------------------------- 1 file changed, 1 insertion(+), 124 deletions(-) (limited to 'src/lib/libssl/tls13_handshake.c') diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c index 542410bd39..9f087888e1 100644 --- a/src/lib/libssl/tls13_handshake.c +++ b/src/lib/libssl/tls13_handshake.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_handshake.c,v 1.35 2019/04/05 20:23:38 tb Exp $ */ +/* $OpenBSD: tls13_handshake.c,v 1.36 2019/11/17 06:43:46 jsing Exp $ */ /* * Copyright (c) 2018-2019 Theo Buehler * Copyright (c) 2019 Joel Sing @@ -400,126 +400,3 @@ tls13_handshake_recv_action(struct tls13_ctx *ctx, return ret; } - -int -tls13_client_hello_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_hello_retry_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_hello_retry_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_hello_retry_recv(struct tls13_ctx *ctx) -{ - return 0; -} - - -int -tls13_client_end_of_early_data_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_end_of_early_data_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_certificate_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_certificate_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_certificate_verify_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_certificate_verify_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_finished_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_key_update_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_client_key_update_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_hello_send(struct tls13_ctx *ctx) -{ - ctx->handshake_stage.hs_type |= NEGOTIATED; - - return 0; -} - -int -tls13_server_hello_retry_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_certificate_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_certificate_request_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_certificate_verify_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int -tls13_server_finished_send(struct tls13_ctx *ctx) -{ - return 0; -} -- cgit v1.2.3-55-g6feb