diff options
author | jsing <> | 2019-02-13 16:28:28 +0000 |
---|---|---|
committer | jsing <> | 2019-02-13 16:28:28 +0000 |
commit | b28bcd3087cd32cc3213d71970d9cb335eef5b94 (patch) | |
tree | 965059bf3187665c85fd4348475732e88b489e34 /src/lib/libssl/tls13_handshake.c | |
parent | 976e689fa21b88566fb9707a45c85dc8e85b2886 (diff) | |
download | openbsd-b28bcd3087cd32cc3213d71970d9cb335eef5b94.tar.gz openbsd-b28bcd3087cd32cc3213d71970d9cb335eef5b94.tar.bz2 openbsd-b28bcd3087cd32cc3213d71970d9cb335eef5b94.zip |
Handle finished messages in TLSv1.3 client.
This adds support for processing of the server finished message and
generation of the client finished message.
ok tb@
Diffstat (limited to 'src/lib/libssl/tls13_handshake.c')
-rw-r--r-- | src/lib/libssl/tls13_handshake.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c index 3ebf1e9d73..630f81a8a8 100644 --- a/src/lib/libssl/tls13_handshake.c +++ b/src/lib/libssl/tls13_handshake.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_handshake.c,v 1.26 2019/02/11 17:48:15 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_handshake.c,v 1.27 2019/02/13 16:28:28 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org> | 3 | * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org> |
4 | * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> | 4 | * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> |
@@ -459,12 +459,6 @@ tls13_client_finished_recv(struct tls13_ctx *ctx) | |||
459 | } | 459 | } |
460 | 460 | ||
461 | int | 461 | int |
462 | tls13_client_finished_send(struct tls13_ctx *ctx) | ||
463 | { | ||
464 | return 0; | ||
465 | } | ||
466 | |||
467 | int | ||
468 | tls13_client_key_update_send(struct tls13_ctx *ctx) | 462 | tls13_client_key_update_send(struct tls13_ctx *ctx) |
469 | { | 463 | { |
470 | return 0; | 464 | return 0; |
@@ -509,12 +503,6 @@ tls13_server_certificate_verify_send(struct tls13_ctx *ctx) | |||
509 | } | 503 | } |
510 | 504 | ||
511 | int | 505 | int |
512 | tls13_server_finished_recv(struct tls13_ctx *ctx) | ||
513 | { | ||
514 | return 0; | ||
515 | } | ||
516 | |||
517 | int | ||
518 | tls13_server_finished_send(struct tls13_ctx *ctx) | 506 | tls13_server_finished_send(struct tls13_ctx *ctx) |
519 | { | 507 | { |
520 | return 0; | 508 | return 0; |