summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
authorbeck <>2020-05-19 01:30:34 +0000
committerbeck <>2020-05-19 01:30:34 +0000
commite91cca87b14fd6699247757d10bb6df50becf339 (patch)
tree8f5ae09863670d19a22fed1e3b31bc81cd7c0353 /src/lib/libssl/tls13_internal.h
parent9edf50111429d901037fd2347bcd0a14d7cad60b (diff)
downloadopenbsd-e91cca87b14fd6699247757d10bb6df50becf339.tar.gz
openbsd-e91cca87b14fd6699247757d10bb6df50becf339.tar.bz2
openbsd-e91cca87b14fd6699247757d10bb6df50becf339.zip
Add support for TLS 1.3 server to send certificate status
messages with oscp staples. ok jsing@ tb@
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index 98cbf4c8a7..7e188981f4 100644
--- a/src/lib/libssl/tls13_internal.h
+++ b/src/lib/libssl/tls13_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_internal.h,v 1.80 2020/05/16 14:42:35 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.81 2020/05/19 01:30:34 beck Exp $ */
2/* 2/*
3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org>
4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -380,8 +380,9 @@ int tls13_server_finished_send(struct tls13_ctx *ctx, CBB *cbb);
380int tls13_server_finished_sent(struct tls13_ctx *ctx); 380int tls13_server_finished_sent(struct tls13_ctx *ctx);
381 381
382void tls13_error_clear(struct tls13_error *error); 382void tls13_error_clear(struct tls13_error *error);
383int tls13_cert_add(struct tls13_ctx *ctx, CBB *cbb, X509 *cert,
384 int(*build_extensions)(SSL *s, CBB *cbb, uint16_t msg_type));
383 385
384int tls13_cert_add(CBB *cbb, X509 *cert);
385int tls13_synthetic_handshake_message(struct tls13_ctx *ctx); 386int tls13_synthetic_handshake_message(struct tls13_ctx *ctx);
386 387
387int tls13_error_set(struct tls13_error *error, int code, int subcode, 388int tls13_error_set(struct tls13_error *error, int code, int subcode,