diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2019-11-18 15:26:00 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2019-11-18 15:26:00 +0000 |
commit | 16774f6a815dcece5c5299057cf86d22b8866cb1 (patch) | |
tree | 5f9d6c4a523827dd4052971765f032435a7ee648 /lib | |
parent | 2268da53ca7a83d48eb19d723df4e7b11aade1d8 (diff) |
Add prototypes for the functions that update application secrets
so that the regress tests will work for them
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/tls13_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libssl/tls13_internal.h b/lib/libssl/tls13_internal.h index 5fd1956cfdd..03e75933a19 100644 --- a/lib/libssl/tls13_internal.h +++ b/lib/libssl/tls13_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_internal.h,v 1.33 2019/11/18 02:44:20 jsing Exp $ */ +/* $OpenBSD: tls13_internal.h,v 1.34 2019/11/18 15:25:59 beck Exp $ */ /* * Copyright (c) 2018 Bob Beck <beck@openbsd.org> * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> @@ -100,6 +100,8 @@ int tls13_derive_handshake_secrets(struct tls13_secrets *secrets, const uint8_t *ecdhe, size_t ecdhe_len, const struct tls13_secret *context); int tls13_derive_application_secrets(struct tls13_secrets *secrets, const struct tls13_secret *context); +int tls13_update_client_traffic_secret(struct tls13_secrets *secrets); +int tls13_update_server_traffic_secret(struct tls13_secrets *secrets); /* * Record Layer. |