summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_handshake.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/tls13_handshake.c')
-rw-r--r--src/lib/libssl/tls13_handshake.c125
1 files changed, 1 insertions, 124 deletions
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 @@
1/* $OpenBSD: tls13_handshake.c,v 1.35 2019/04/05 20:23:38 tb Exp $ */ 1/* $OpenBSD: tls13_handshake.c,v 1.36 2019/11/17 06:43:46 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>
@@ -400,126 +400,3 @@ tls13_handshake_recv_action(struct tls13_ctx *ctx,
400 400
401 return ret; 401 return ret;
402} 402}
403
404int
405tls13_client_hello_recv(struct tls13_ctx *ctx)
406{
407 return 0;
408}
409
410int
411tls13_client_hello_retry_send(struct tls13_ctx *ctx)
412{
413 return 0;
414}
415
416int
417tls13_server_hello_retry_recv(struct tls13_ctx *ctx)
418{
419 return 0;
420}
421
422int
423tls13_client_hello_retry_recv(struct tls13_ctx *ctx)
424{
425 return 0;
426}
427
428
429int
430tls13_client_end_of_early_data_send(struct tls13_ctx *ctx)
431{
432 return 0;
433}
434
435int
436tls13_client_end_of_early_data_recv(struct tls13_ctx *ctx)
437{
438 return 0;
439}
440
441int
442tls13_client_certificate_send(struct tls13_ctx *ctx)
443{
444 return 0;
445}
446
447int
448tls13_client_certificate_recv(struct tls13_ctx *ctx)
449{
450 return 0;
451}
452
453int
454tls13_client_certificate_verify_send(struct tls13_ctx *ctx)
455{
456 return 0;
457}
458
459int
460tls13_client_certificate_verify_recv(struct tls13_ctx *ctx)
461{
462 return 0;
463}
464
465int
466tls13_client_finished_recv(struct tls13_ctx *ctx)
467{
468 return 0;
469}
470
471int
472tls13_client_key_update_send(struct tls13_ctx *ctx)
473{
474 return 0;
475}
476
477int
478tls13_client_key_update_recv(struct tls13_ctx *ctx)
479{
480 return 0;
481}
482
483int
484tls13_server_hello_send(struct tls13_ctx *ctx)
485{
486 ctx->handshake_stage.hs_type |= NEGOTIATED;
487
488 return 0;
489}
490
491int
492tls13_server_hello_retry_send(struct tls13_ctx *ctx)
493{
494 return 0;
495}
496
497int
498tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx)
499{
500 return 0;
501}
502
503int
504tls13_server_certificate_send(struct tls13_ctx *ctx)
505{
506 return 0;
507}
508
509int
510tls13_server_certificate_request_send(struct tls13_ctx *ctx)
511{
512 return 0;
513}
514
515int
516tls13_server_certificate_verify_send(struct tls13_ctx *ctx)
517{
518 return 0;
519}
520
521int
522tls13_server_finished_send(struct tls13_ctx *ctx)
523{
524 return 0;
525}