diff options
author | beck <> | 2019-11-18 15:25:59 +0000 |
---|---|---|
committer | beck <> | 2019-11-18 15:25:59 +0000 |
commit | 7eaa6d9160d92613f7d0b43d5a0fc3e36ed28d7c (patch) | |
tree | 0863be7d3cdfeadf407b66bed9c62d406f95b128 /src/lib | |
parent | 70c814f29131358571652be5c543265c82523bca (diff) | |
download | openbsd-7eaa6d9160d92613f7d0b43d5a0fc3e36ed28d7c.tar.gz openbsd-7eaa6d9160d92613f7d0b43d5a0fc3e36ed28d7c.tar.bz2 openbsd-7eaa6d9160d92613f7d0b43d5a0fc3e36ed28d7c.zip |
Add prototypes for the functions that update application secrets
so that the regress tests will work for them
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/tls13_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h index 5fd1956cfd..03e75933a1 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.33 2019/11/18 02:44:20 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_internal.h,v 1.34 2019/11/18 15:25:59 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> |
@@ -100,6 +100,8 @@ int tls13_derive_handshake_secrets(struct tls13_secrets *secrets, | |||
100 | const uint8_t *ecdhe, size_t ecdhe_len, const struct tls13_secret *context); | 100 | const uint8_t *ecdhe, size_t ecdhe_len, const struct tls13_secret *context); |
101 | int tls13_derive_application_secrets(struct tls13_secrets *secrets, | 101 | int tls13_derive_application_secrets(struct tls13_secrets *secrets, |
102 | const struct tls13_secret *context); | 102 | const struct tls13_secret *context); |
103 | int tls13_update_client_traffic_secret(struct tls13_secrets *secrets); | ||
104 | int tls13_update_server_traffic_secret(struct tls13_secrets *secrets); | ||
103 | 105 | ||
104 | /* | 106 | /* |
105 | * Record Layer. | 107 | * Record Layer. |