summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_cbc.c
diff options
context:
space:
mode:
authorjsing <>2021-05-16 14:10:43 +0000
committerjsing <>2021-05-16 14:10:43 +0000
commitf90f5cc9a7987768e1cd09f4fc110caf5512afff (patch)
tree8bdf19b574c605a50b142d3dbfbfb0ab0d7c8530 /src/lib/libssl/s3_cbc.c
parent6eb9f4e8d442a1181957027a462b0fd7230baeba (diff)
downloadopenbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.tar.gz
openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.tar.bz2
openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.zip
Make local header inclusion consistent.
Consistently include local headers in the same location, using the same grouping/sorting across all files.
Diffstat (limited to 'src/lib/libssl/s3_cbc.c')
-rw-r--r--src/lib/libssl/s3_cbc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/s3_cbc.c b/src/lib/libssl/s3_cbc.c
index 4f84c9485b..1c0286f087 100644
--- a/src/lib/libssl/s3_cbc.c
+++ b/src/lib/libssl/s3_cbc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s3_cbc.c,v 1.23 2020/10/03 17:35:16 jsing Exp $ */ 1/* $OpenBSD: s3_cbc.c,v 1.24 2021/05/16 14:10:43 jsing Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2012 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2012 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -53,11 +53,11 @@
53 * 53 *
54 */ 54 */
55 55
56#include "ssl_locl.h"
57
58#include <openssl/md5.h> 56#include <openssl/md5.h>
59#include <openssl/sha.h> 57#include <openssl/sha.h>
60 58
59#include "ssl_locl.h"
60
61/* MAX_HASH_BIT_COUNT_BYTES is the maximum number of bytes in the hash's length 61/* MAX_HASH_BIT_COUNT_BYTES is the maximum number of bytes in the hash's length
62 * field. (SHA-384/512 have 128-bit length.) */ 62 * field. (SHA-384/512 have 128-bit length.) */
63#define MAX_HASH_BIT_COUNT_BYTES 16 63#define MAX_HASH_BIT_COUNT_BYTES 16