summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/sha/sha_locl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/sha/sha_locl.h')
-rw-r--r--src/lib/libcrypto/sha/sha_locl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/sha/sha_locl.h b/src/lib/libcrypto/sha/sha_locl.h
index f92d9c4181..f2f9a31ee7 100644
--- a/src/lib/libcrypto/sha/sha_locl.h
+++ b/src/lib/libcrypto/sha/sha_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sha_locl.h,v 1.18 2014/08/18 19:11:48 bcook Exp $ */ 1/* $OpenBSD: sha_locl.h,v 1.19 2014/10/28 07:35:59 jsg Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -206,7 +206,7 @@ int SHA1_Init(SHA_CTX *c)
206static void HASH_BLOCK_DATA_ORDER (SHA_CTX *c, const void *p, size_t num) 206static void HASH_BLOCK_DATA_ORDER (SHA_CTX *c, const void *p, size_t num)
207 { 207 {
208 const unsigned char *data=p; 208 const unsigned char *data=p;
209 register unsigned MD32_REG_T A,B,C,D,E,T,l; 209 unsigned MD32_REG_T A,B,C,D,E,T,l;
210#ifndef MD32_XARRAY 210#ifndef MD32_XARRAY
211 unsigned MD32_REG_T XX0, XX1, XX2, XX3, XX4, XX5, XX6, XX7, 211 unsigned MD32_REG_T XX0, XX1, XX2, XX3, XX4, XX5, XX6, XX7,
212 XX8, XX9,XX10,XX11,XX12,XX13,XX14,XX15; 212 XX8, XX9,XX10,XX11,XX12,XX13,XX14,XX15;
@@ -391,7 +391,7 @@ static void HASH_BLOCK_DATA_ORDER (SHA_CTX *c, const void *p, size_t num)
391static void HASH_BLOCK_DATA_ORDER (SHA_CTX *c, const void *p, size_t num) 391static void HASH_BLOCK_DATA_ORDER (SHA_CTX *c, const void *p, size_t num)
392 { 392 {
393 const unsigned char *data=p; 393 const unsigned char *data=p;
394 register unsigned MD32_REG_T A,B,C,D,E,T,l; 394 unsigned MD32_REG_T A,B,C,D,E,T,l;
395 int i; 395 int i;
396 SHA_LONG X[16]; 396 SHA_LONG X[16];
397 397