summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/sha/sha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/sha/sha256.c')
-rw-r--r--src/lib/libcrypto/sha/sha256.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/sha/sha256.c b/src/lib/libcrypto/sha/sha256.c
index 0d0c4231ef..231a5a058c 100644
--- a/src/lib/libcrypto/sha/sha256.c
+++ b/src/lib/libcrypto/sha/sha256.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sha256.c,v 1.27 2023/07/08 12:24:10 beck Exp $ */ 1/* $OpenBSD: sha256.c,v 1.28 2023/08/10 07:15:23 jsing Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -135,7 +135,7 @@ sha256_block_data_order(SHA256_CTX *ctx, const void *_in, size_t num)
135{ 135{
136 const uint8_t *in = _in; 136 const uint8_t *in = _in;
137 const SHA_LONG *in32; 137 const SHA_LONG *in32;
138 unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1; 138 unsigned int a, b, c, d, e, f, g, h, s0, s1, T1;
139 SHA_LONG X[16]; 139 SHA_LONG X[16];
140 int i; 140 int i;
141 141