diff options
| author | beck <> | 2020-01-26 02:45:27 +0000 |
|---|---|---|
| committer | beck <> | 2020-01-26 02:45:27 +0000 |
| commit | 64c993b7220a260540d3a56c92c1195e9e554e64 (patch) | |
| tree | 193fd2746b2e1a11156b82b98dfd76a57649788b /src/lib/libssl/tls13_internal.h | |
| parent | d70d94b77ba7878e6682514bd07a9048e151e224 (diff) | |
| download | openbsd-64c993b7220a260540d3a56c92c1195e9e554e64.tar.gz openbsd-64c993b7220a260540d3a56c92c1195e9e554e64.tar.bz2 openbsd-64c993b7220a260540d3a56c92c1195e9e554e64.zip | |
Move pad and verify context into tls13_lib.c
ok jsing@
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libssl/tls13_internal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h index 4cae2ebcce..ec58525c2b 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.56 2020/01/25 19:01:43 tb Exp $ */ | 1 | /* $OpenBSD: tls13_internal.h,v 1.57 2020/01/26 02:45:27 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> |
| @@ -302,6 +302,8 @@ int tls13_server_finished_sent(struct tls13_ctx *ctx); | |||
| 302 | 302 | ||
| 303 | void tls13_error_clear(struct tls13_error *error); | 303 | void tls13_error_clear(struct tls13_error *error); |
| 304 | 304 | ||
| 305 | int tls13_cert_add(CBB *cbb, X509 *cert); | ||
| 306 | |||
| 305 | int tls13_error_set(struct tls13_error *error, int code, int subcode, | 307 | int tls13_error_set(struct tls13_error *error, int code, int subcode, |
| 306 | const char *file, int line, const char *fmt, ...); | 308 | const char *file, int line, const char *fmt, ...); |
| 307 | int tls13_error_setx(struct tls13_error *error, int code, int subcode, | 309 | int tls13_error_setx(struct tls13_error *error, int code, int subcode, |
| @@ -316,6 +318,9 @@ int tls13_error_setx(struct tls13_error *error, int code, int subcode, | |||
| 316 | 318 | ||
| 317 | extern uint8_t tls13_downgrade_12[8]; | 319 | extern uint8_t tls13_downgrade_12[8]; |
| 318 | extern uint8_t tls13_downgrade_11[8]; | 320 | extern uint8_t tls13_downgrade_11[8]; |
| 321 | extern uint8_t tls13_cert_verify_pad[64]; | ||
| 322 | extern uint8_t tls13_cert_client_verify_context[]; | ||
| 323 | extern uint8_t tls13_cert_server_verify_context[]; | ||
| 319 | 324 | ||
| 320 | __END_HIDDEN_DECLS | 325 | __END_HIDDEN_DECLS |
| 321 | 326 | ||
