diff options
author | jsing <> | 2019-02-13 16:29:18 +0000 |
---|---|---|
committer | jsing <> | 2019-02-13 16:29:18 +0000 |
commit | 3b55da13acf5d479d81ef6df8922f2d3edc93bb0 (patch) | |
tree | 5fb03ba03166c02c99ebe746a3d2d008d4d23b06 | |
parent | b28bcd3087cd32cc3213d71970d9cb335eef5b94 (diff) | |
download | openbsd-3b55da13acf5d479d81ef6df8922f2d3edc93bb0.tar.gz openbsd-3b55da13acf5d479d81ef6df8922f2d3edc93bb0.tar.bz2 openbsd-3b55da13acf5d479d81ef6df8922f2d3edc93bb0.zip |
Clean up some pesky trailing whitespace.
-rw-r--r-- | src/lib/libssl/tls13_client.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libssl/tls13_client.c b/src/lib/libssl/tls13_client.c index b3209c063c..c8345f3a36 100644 --- a/src/lib/libssl/tls13_client.c +++ b/src/lib/libssl/tls13_client.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_client.c,v 1.7 2019/02/13 16:28:28 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_client.c,v 1.8 2019/02/13 16:29:18 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -149,7 +149,7 @@ static const uint8_t tls13_hello_retry_request_hash[] = { | |||
149 | 0xcf, 0x21, 0xad, 0x74, 0xe5, 0x9a, 0x61, 0x11, | 149 | 0xcf, 0x21, 0xad, 0x74, 0xe5, 0x9a, 0x61, 0x11, |
150 | 0xbe, 0x1d, 0x8c, 0x02, 0x1e, 0x65, 0xb8, 0x91, | 150 | 0xbe, 0x1d, 0x8c, 0x02, 0x1e, 0x65, 0xb8, 0x91, |
151 | 0xc2, 0xa2, 0x11, 0x16, 0x7a, 0xbb, 0x8c, 0x5e, | 151 | 0xc2, 0xa2, 0x11, 0x16, 0x7a, 0xbb, 0x8c, 0x5e, |
152 | 0x07, 0x9e, 0x09, 0xe2, 0xc8, 0xa8, 0x33, 0x9c, | 152 | 0x07, 0x9e, 0x09, 0xe2, 0xc8, 0xa8, 0x33, 0x9c, |
153 | }; | 153 | }; |
154 | 154 | ||
155 | static int | 155 | static int |
@@ -460,14 +460,14 @@ tls13_server_certificate_recv(struct tls13_ctx *ctx) | |||
460 | * Certificate Verify padding - RFC 8446 section 4.4.3. | 460 | * Certificate Verify padding - RFC 8446 section 4.4.3. |
461 | */ | 461 | */ |
462 | static uint8_t cert_verify_pad[64] = { | 462 | static uint8_t cert_verify_pad[64] = { |
463 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 463 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
464 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 464 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
465 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 465 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
466 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 466 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
467 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 467 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
468 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 468 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
469 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 469 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
470 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, | 470 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
471 | }; | 471 | }; |
472 | 472 | ||
473 | static uint8_t server_cert_verify_context[] = "TLS 1.3, server CertificateVerify"; | 473 | static uint8_t server_cert_verify_context[] = "TLS 1.3, server CertificateVerify"; |