summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
authorjsing <>2020-04-28 20:30:41 +0000
committerjsing <>2020-04-28 20:30:41 +0000
commitceb4dab60b6d8724db6522bd50acb817a2ae5f69 (patch)
tree048ea72780d56f4f5548f1cffa09cf4ae89fc001 /src/lib/libssl/tls13_internal.h
parent4a19347a39f2ec104b08860f36a51ec5f835e1f4 (diff)
downloadopenbsd-ceb4dab60b6d8724db6522bd50acb817a2ae5f69.tar.gz
openbsd-ceb4dab60b6d8724db6522bd50acb817a2ae5f69.tar.bz2
openbsd-ceb4dab60b6d8724db6522bd50acb817a2ae5f69.zip
Rename tls13_client_synthetic_handshake_message() and move to tls13_lib.c.
The server-side will need to use the same function. No functional change. ok inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index ee82a44693..d711f1a58d 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.65 2020/04/22 17:05:07 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.66 2020/04/28 20:30:40 jsing 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>
@@ -326,6 +326,7 @@ int tls13_server_finished_sent(struct tls13_ctx *ctx);
326void tls13_error_clear(struct tls13_error *error); 326void tls13_error_clear(struct tls13_error *error);
327 327
328int tls13_cert_add(CBB *cbb, X509 *cert); 328int tls13_cert_add(CBB *cbb, X509 *cert);
329int tls13_synthetic_handshake_message(struct tls13_ctx *ctx);
329 330
330int tls13_error_set(struct tls13_error *error, int code, int subcode, 331int tls13_error_set(struct tls13_error *error, int code, int subcode,
331 const char *file, int line, const char *fmt, ...); 332 const char *file, int line, const char *fmt, ...);