diff options
| author | jsing <> | 2019-02-04 16:18:15 +0000 |
|---|---|---|
| committer | jsing <> | 2019-02-04 16:18:15 +0000 |
| commit | a463a4af03e850a8f1e34eca25a31e6b653e8c0e (patch) | |
| tree | 4b4a3650a0532f0cb29f66755c86aa47e29f60c6 /src/lib/libssl/tls13_handshake.c | |
| parent | c8529befa0a8588be484dd03bbc4c6b6d8490f05 (diff) | |
| download | openbsd-a463a4af03e850a8f1e34eca25a31e6b653e8c0e.tar.gz openbsd-a463a4af03e850a8f1e34eca25a31e6b653e8c0e.tar.bz2 openbsd-a463a4af03e850a8f1e34eca25a31e6b653e8c0e.zip | |
Implement parsing and processing of TLSv1.3 ServerHello messages.
ok tb@
Diffstat (limited to 'src/lib/libssl/tls13_handshake.c')
| -rw-r--r-- | src/lib/libssl/tls13_handshake.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c index f9cb3e5b47..b3c08ef39c 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.22 2019/01/23 23:29:56 tb Exp $ */ | 1 | /* $OpenBSD: tls13_handshake.c,v 1.23 2019/02/04 16:18:15 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> |
| @@ -467,14 +467,6 @@ tls13_client_key_update_recv(struct tls13_ctx *ctx) | |||
| 467 | } | 467 | } |
| 468 | 468 | ||
| 469 | int | 469 | int |
| 470 | tls13_server_hello_recv(struct tls13_ctx *ctx) | ||
| 471 | { | ||
| 472 | ctx->handshake_stage.hs_type |= NEGOTIATED; | ||
| 473 | |||
| 474 | return 0; | ||
| 475 | } | ||
| 476 | |||
| 477 | int | ||
| 478 | tls13_server_hello_send(struct tls13_ctx *ctx) | 470 | tls13_server_hello_send(struct tls13_ctx *ctx) |
| 479 | { | 471 | { |
| 480 | ctx->handshake_stage.hs_type |= NEGOTIATED; | 472 | ctx->handshake_stage.hs_type |= NEGOTIATED; |
