xref: /onnv-gate/usr/src/common/openssl/crypto/sha/sha256.c (revision 2139:6243c3338933)
1*2139Sjp161948 /* crypto/sha/sha256.c */
2*2139Sjp161948 /* ====================================================================
3*2139Sjp161948  * Copyright (c) 2004 The OpenSSL Project.  All rights reserved
4*2139Sjp161948  * according to the OpenSSL license [found in ../../LICENSE].
5*2139Sjp161948  * ====================================================================
6*2139Sjp161948  */
7*2139Sjp161948 #include <openssl/opensslconf.h>
8*2139Sjp161948 #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA256)
9*2139Sjp161948 
10*2139Sjp161948 #include <stdlib.h>
11*2139Sjp161948 #include <string.h>
12*2139Sjp161948 
13*2139Sjp161948 #include <openssl/crypto.h>
14*2139Sjp161948 #include <openssl/sha.h>
15*2139Sjp161948 #include <openssl/opensslv.h>
16*2139Sjp161948 
17*2139Sjp161948 const char *SHA256_version="SHA-256" OPENSSL_VERSION_PTEXT;
18*2139Sjp161948 
SHA224_Init(SHA256_CTX * c)19*2139Sjp161948 int SHA224_Init (SHA256_CTX *c)
20*2139Sjp161948 	{
21*2139Sjp161948 	c->h[0]=0xc1059ed8UL;	c->h[1]=0x367cd507UL;
22*2139Sjp161948 	c->h[2]=0x3070dd17UL;	c->h[3]=0xf70e5939UL;
23*2139Sjp161948 	c->h[4]=0xffc00b31UL;	c->h[5]=0x68581511UL;
24*2139Sjp161948 	c->h[6]=0x64f98fa7UL;	c->h[7]=0xbefa4fa4UL;
25*2139Sjp161948 	c->Nl=0;	c->Nh=0;
26*2139Sjp161948 	c->num=0;	c->md_len=SHA224_DIGEST_LENGTH;
27*2139Sjp161948 	return 1;
28*2139Sjp161948 	}
29*2139Sjp161948 
SHA256_Init(SHA256_CTX * c)30*2139Sjp161948 int SHA256_Init (SHA256_CTX *c)
31*2139Sjp161948 	{
32*2139Sjp161948 	c->h[0]=0x6a09e667UL;	c->h[1]=0xbb67ae85UL;
33*2139Sjp161948 	c->h[2]=0x3c6ef372UL;	c->h[3]=0xa54ff53aUL;
34*2139Sjp161948 	c->h[4]=0x510e527fUL;	c->h[5]=0x9b05688cUL;
35*2139Sjp161948 	c->h[6]=0x1f83d9abUL;	c->h[7]=0x5be0cd19UL;
36*2139Sjp161948 	c->Nl=0;	c->Nh=0;
37*2139Sjp161948 	c->num=0;	c->md_len=SHA256_DIGEST_LENGTH;
38*2139Sjp161948 	return 1;
39*2139Sjp161948 	}
40*2139Sjp161948 
SHA224(const unsigned char * d,size_t n,unsigned char * md)41*2139Sjp161948 unsigned char *SHA224(const unsigned char *d, size_t n, unsigned char *md)
42*2139Sjp161948 	{
43*2139Sjp161948 	SHA256_CTX c;
44*2139Sjp161948 	static unsigned char m[SHA224_DIGEST_LENGTH];
45*2139Sjp161948 
46*2139Sjp161948 	if (md == NULL) md=m;
47*2139Sjp161948 	SHA224_Init(&c);
48*2139Sjp161948 	SHA256_Update(&c,d,n);
49*2139Sjp161948 	SHA256_Final(md,&c);
50*2139Sjp161948 	OPENSSL_cleanse(&c,sizeof(c));
51*2139Sjp161948 	return(md);
52*2139Sjp161948 	}
53*2139Sjp161948 
SHA256(const unsigned char * d,size_t n,unsigned char * md)54*2139Sjp161948 unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md)
55*2139Sjp161948 	{
56*2139Sjp161948 	SHA256_CTX c;
57*2139Sjp161948 	static unsigned char m[SHA256_DIGEST_LENGTH];
58*2139Sjp161948 
59*2139Sjp161948 	if (md == NULL) md=m;
60*2139Sjp161948 	SHA256_Init(&c);
61*2139Sjp161948 	SHA256_Update(&c,d,n);
62*2139Sjp161948 	SHA256_Final(md,&c);
63*2139Sjp161948 	OPENSSL_cleanse(&c,sizeof(c));
64*2139Sjp161948 	return(md);
65*2139Sjp161948 	}
66*2139Sjp161948 
SHA224_Update(SHA256_CTX * c,const void * data,size_t len)67*2139Sjp161948 int SHA224_Update(SHA256_CTX *c, const void *data, size_t len)
68*2139Sjp161948 {   return SHA256_Update (c,data,len);   }
SHA224_Final(unsigned char * md,SHA256_CTX * c)69*2139Sjp161948 int SHA224_Final (unsigned char *md, SHA256_CTX *c)
70*2139Sjp161948 {   return SHA256_Final (md,c);   }
71*2139Sjp161948 
72*2139Sjp161948 #ifndef	SHA_LONG_LOG2
73*2139Sjp161948 #define	SHA_LONG_LOG2	2	/* default to 32 bits */
74*2139Sjp161948 #endif
75*2139Sjp161948 
76*2139Sjp161948 #define	DATA_ORDER_IS_BIG_ENDIAN
77*2139Sjp161948 
78*2139Sjp161948 #define	HASH_LONG		SHA_LONG
79*2139Sjp161948 #define	HASH_LONG_LOG2		SHA_LONG_LOG2
80*2139Sjp161948 #define	HASH_CTX		SHA256_CTX
81*2139Sjp161948 #define	HASH_CBLOCK		SHA_CBLOCK
82*2139Sjp161948 #define	HASH_LBLOCK		SHA_LBLOCK
83*2139Sjp161948 /*
84*2139Sjp161948  * Note that FIPS180-2 discusses "Truncation of the Hash Function Output."
85*2139Sjp161948  * default: case below covers for it. It's not clear however if it's
86*2139Sjp161948  * permitted to truncate to amount of bytes not divisible by 4. I bet not,
87*2139Sjp161948  * but if it is, then default: case shall be extended. For reference.
88*2139Sjp161948  * Idea behind separate cases for pre-defined lenghts is to let the
89*2139Sjp161948  * compiler decide if it's appropriate to unroll small loops.
90*2139Sjp161948  */
91*2139Sjp161948 #define	HASH_MAKE_STRING(c,s)	do {	\
92*2139Sjp161948 	unsigned long ll;		\
93*2139Sjp161948 	unsigned int  n;		\
94*2139Sjp161948 	switch ((c)->md_len)		\
95*2139Sjp161948 	{   case SHA224_DIGEST_LENGTH:	\
96*2139Sjp161948 		for (n=0;n<SHA224_DIGEST_LENGTH/4;n++)	\
97*2139Sjp161948 		{   ll=(c)->h[n]; HOST_l2c(ll,(s));   }	\
98*2139Sjp161948 		break;			\
99*2139Sjp161948 	    case SHA256_DIGEST_LENGTH:	\
100*2139Sjp161948 		for (n=0;n<SHA256_DIGEST_LENGTH/4;n++)	\
101*2139Sjp161948 		{   ll=(c)->h[n]; HOST_l2c(ll,(s));   }	\
102*2139Sjp161948 		break;			\
103*2139Sjp161948 	    default:			\
104*2139Sjp161948 		if ((c)->md_len > SHA256_DIGEST_LENGTH)	\
105*2139Sjp161948 		    return 0;				\
106*2139Sjp161948 		for (n=0;n<(c)->md_len/4;n++)		\
107*2139Sjp161948 		{   ll=(c)->h[n]; HOST_l2c(ll,(s));   }	\
108*2139Sjp161948 		break;			\
109*2139Sjp161948 	}				\
110*2139Sjp161948 	} while (0)
111*2139Sjp161948 
112*2139Sjp161948 #define	HASH_UPDATE		SHA256_Update
113*2139Sjp161948 #define	HASH_TRANSFORM		SHA256_Transform
114*2139Sjp161948 #define	HASH_FINAL		SHA256_Final
115*2139Sjp161948 #define	HASH_BLOCK_HOST_ORDER	sha256_block_host_order
116*2139Sjp161948 #define	HASH_BLOCK_DATA_ORDER	sha256_block_data_order
117*2139Sjp161948 void sha256_block_host_order (SHA256_CTX *ctx, const void *in, size_t num);
118*2139Sjp161948 void sha256_block_data_order (SHA256_CTX *ctx, const void *in, size_t num);
119*2139Sjp161948 
120*2139Sjp161948 #include "md32_common.h"
121*2139Sjp161948 
122*2139Sjp161948 #ifdef SHA256_ASM
123*2139Sjp161948 void sha256_block (SHA256_CTX *ctx, const void *in, size_t num, int host);
124*2139Sjp161948 #else
125*2139Sjp161948 static const SHA_LONG K256[64] = {
126*2139Sjp161948 	0x428a2f98UL,0x71374491UL,0xb5c0fbcfUL,0xe9b5dba5UL,
127*2139Sjp161948 	0x3956c25bUL,0x59f111f1UL,0x923f82a4UL,0xab1c5ed5UL,
128*2139Sjp161948 	0xd807aa98UL,0x12835b01UL,0x243185beUL,0x550c7dc3UL,
129*2139Sjp161948 	0x72be5d74UL,0x80deb1feUL,0x9bdc06a7UL,0xc19bf174UL,
130*2139Sjp161948 	0xe49b69c1UL,0xefbe4786UL,0x0fc19dc6UL,0x240ca1ccUL,
131*2139Sjp161948 	0x2de92c6fUL,0x4a7484aaUL,0x5cb0a9dcUL,0x76f988daUL,
132*2139Sjp161948 	0x983e5152UL,0xa831c66dUL,0xb00327c8UL,0xbf597fc7UL,
133*2139Sjp161948 	0xc6e00bf3UL,0xd5a79147UL,0x06ca6351UL,0x14292967UL,
134*2139Sjp161948 	0x27b70a85UL,0x2e1b2138UL,0x4d2c6dfcUL,0x53380d13UL,
135*2139Sjp161948 	0x650a7354UL,0x766a0abbUL,0x81c2c92eUL,0x92722c85UL,
136*2139Sjp161948 	0xa2bfe8a1UL,0xa81a664bUL,0xc24b8b70UL,0xc76c51a3UL,
137*2139Sjp161948 	0xd192e819UL,0xd6990624UL,0xf40e3585UL,0x106aa070UL,
138*2139Sjp161948 	0x19a4c116UL,0x1e376c08UL,0x2748774cUL,0x34b0bcb5UL,
139*2139Sjp161948 	0x391c0cb3UL,0x4ed8aa4aUL,0x5b9cca4fUL,0x682e6ff3UL,
140*2139Sjp161948 	0x748f82eeUL,0x78a5636fUL,0x84c87814UL,0x8cc70208UL,
141*2139Sjp161948 	0x90befffaUL,0xa4506cebUL,0xbef9a3f7UL,0xc67178f2UL };
142*2139Sjp161948 
143*2139Sjp161948 /*
144*2139Sjp161948  * FIPS specification refers to right rotations, while our ROTATE macro
145*2139Sjp161948  * is left one. This is why you might notice that rotation coefficients
146*2139Sjp161948  * differ from those observed in FIPS document by 32-N...
147*2139Sjp161948  */
148*2139Sjp161948 #define Sigma0(x)	(ROTATE((x),30) ^ ROTATE((x),19) ^ ROTATE((x),10))
149*2139Sjp161948 #define Sigma1(x)	(ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7))
150*2139Sjp161948 #define sigma0(x)	(ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3))
151*2139Sjp161948 #define sigma1(x)	(ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10))
152*2139Sjp161948 
153*2139Sjp161948 #define Ch(x,y,z)	(((x) & (y)) ^ ((~(x)) & (z)))
154*2139Sjp161948 #define Maj(x,y,z)	(((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
155*2139Sjp161948 
156*2139Sjp161948 #ifdef OPENSSL_SMALL_FOOTPRINT
157*2139Sjp161948 
sha256_block(SHA256_CTX * ctx,const void * in,size_t num,int host)158*2139Sjp161948 static void sha256_block (SHA256_CTX *ctx, const void *in, size_t num, int host)
159*2139Sjp161948 	{
160*2139Sjp161948 	unsigned MD32_REG_T a,b,c,d,e,f,g,h,s0,s1,T1,T2;
161*2139Sjp161948 	SHA_LONG	X[16];
162*2139Sjp161948 	int i;
163*2139Sjp161948 	const unsigned char *data=in;
164*2139Sjp161948 
165*2139Sjp161948 			while (num--) {
166*2139Sjp161948 
167*2139Sjp161948 	a = ctx->h[0];	b = ctx->h[1];	c = ctx->h[2];	d = ctx->h[3];
168*2139Sjp161948 	e = ctx->h[4];	f = ctx->h[5];	g = ctx->h[6];	h = ctx->h[7];
169*2139Sjp161948 
170*2139Sjp161948 	if (host)
171*2139Sjp161948 		{
172*2139Sjp161948 		const SHA_LONG *W=(const SHA_LONG *)data;
173*2139Sjp161948 
174*2139Sjp161948 		for (i=0;i<16;i++)
175*2139Sjp161948 			{
176*2139Sjp161948 			T1 = X[i] = W[i];
177*2139Sjp161948 			T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
178*2139Sjp161948 			T2 = Sigma0(a) + Maj(a,b,c);
179*2139Sjp161948 			h = g;	g = f;	f = e;	e = d + T1;
180*2139Sjp161948 			d = c;	c = b;	b = a;	a = T1 + T2;
181*2139Sjp161948 			}
182*2139Sjp161948 
183*2139Sjp161948 		data += SHA256_CBLOCK;
184*2139Sjp161948 		}
185*2139Sjp161948 	else
186*2139Sjp161948 		{
187*2139Sjp161948 		SHA_LONG l;
188*2139Sjp161948 
189*2139Sjp161948 		for (i=0;i<16;i++)
190*2139Sjp161948 			{
191*2139Sjp161948 			HOST_c2l(data,l); T1 = X[i] = l;
192*2139Sjp161948 			T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
193*2139Sjp161948 			T2 = Sigma0(a) + Maj(a,b,c);
194*2139Sjp161948 			h = g;	g = f;	f = e;	e = d + T1;
195*2139Sjp161948 			d = c;	c = b;	b = a;	a = T1 + T2;
196*2139Sjp161948 			}
197*2139Sjp161948 		}
198*2139Sjp161948 
199*2139Sjp161948 	for (;i<64;i++)
200*2139Sjp161948 		{
201*2139Sjp161948 		s0 = X[(i+1)&0x0f];	s0 = sigma0(s0);
202*2139Sjp161948 		s1 = X[(i+14)&0x0f];	s1 = sigma1(s1);
203*2139Sjp161948 
204*2139Sjp161948 		T1 = X[i&0xf] += s0 + s1 + X[(i+9)&0xf];
205*2139Sjp161948 		T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
206*2139Sjp161948 		T2 = Sigma0(a) + Maj(a,b,c);
207*2139Sjp161948 		h = g;	g = f;	f = e;	e = d + T1;
208*2139Sjp161948 		d = c;	c = b;	b = a;	a = T1 + T2;
209*2139Sjp161948 		}
210*2139Sjp161948 
211*2139Sjp161948 	ctx->h[0] += a;	ctx->h[1] += b;	ctx->h[2] += c;	ctx->h[3] += d;
212*2139Sjp161948 	ctx->h[4] += e;	ctx->h[5] += f;	ctx->h[6] += g;	ctx->h[7] += h;
213*2139Sjp161948 
214*2139Sjp161948 			}
215*2139Sjp161948 }
216*2139Sjp161948 
217*2139Sjp161948 #else
218*2139Sjp161948 
219*2139Sjp161948 #define	ROUND_00_15(i,a,b,c,d,e,f,g,h)		do {	\
220*2139Sjp161948 	T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];	\
221*2139Sjp161948 	h = Sigma0(a) + Maj(a,b,c);			\
222*2139Sjp161948 	d += T1;	h += T1;		} while (0)
223*2139Sjp161948 
224*2139Sjp161948 #define	ROUND_16_63(i,a,b,c,d,e,f,g,h,X)	do {	\
225*2139Sjp161948 	s0 = X[(i+1)&0x0f];	s0 = sigma0(s0);	\
226*2139Sjp161948 	s1 = X[(i+14)&0x0f];	s1 = sigma1(s1);	\
227*2139Sjp161948 	T1 = X[(i)&0x0f] += s0 + s1 + X[(i+9)&0x0f];	\
228*2139Sjp161948 	ROUND_00_15(i,a,b,c,d,e,f,g,h);		} while (0)
229*2139Sjp161948 
sha256_block(SHA256_CTX * ctx,const void * in,size_t num,int host)230*2139Sjp161948 static void sha256_block (SHA256_CTX *ctx, const void *in, size_t num, int host)
231*2139Sjp161948 	{
232*2139Sjp161948 	unsigned MD32_REG_T a,b,c,d,e,f,g,h,s0,s1,T1;
233*2139Sjp161948 	SHA_LONG	X[16];
234*2139Sjp161948 	int i;
235*2139Sjp161948 	const unsigned char *data=in;
236*2139Sjp161948 
237*2139Sjp161948 			while (num--) {
238*2139Sjp161948 
239*2139Sjp161948 	a = ctx->h[0];	b = ctx->h[1];	c = ctx->h[2];	d = ctx->h[3];
240*2139Sjp161948 	e = ctx->h[4];	f = ctx->h[5];	g = ctx->h[6];	h = ctx->h[7];
241*2139Sjp161948 
242*2139Sjp161948 	if (host)
243*2139Sjp161948 		{
244*2139Sjp161948 		const SHA_LONG *W=(const SHA_LONG *)data;
245*2139Sjp161948 
246*2139Sjp161948 		T1 = X[0] = W[0];	ROUND_00_15(0,a,b,c,d,e,f,g,h);
247*2139Sjp161948 		T1 = X[1] = W[1];	ROUND_00_15(1,h,a,b,c,d,e,f,g);
248*2139Sjp161948 		T1 = X[2] = W[2];	ROUND_00_15(2,g,h,a,b,c,d,e,f);
249*2139Sjp161948 		T1 = X[3] = W[3];	ROUND_00_15(3,f,g,h,a,b,c,d,e);
250*2139Sjp161948 		T1 = X[4] = W[4];	ROUND_00_15(4,e,f,g,h,a,b,c,d);
251*2139Sjp161948 		T1 = X[5] = W[5];	ROUND_00_15(5,d,e,f,g,h,a,b,c);
252*2139Sjp161948 		T1 = X[6] = W[6];	ROUND_00_15(6,c,d,e,f,g,h,a,b);
253*2139Sjp161948 		T1 = X[7] = W[7];	ROUND_00_15(7,b,c,d,e,f,g,h,a);
254*2139Sjp161948 		T1 = X[8] = W[8];	ROUND_00_15(8,a,b,c,d,e,f,g,h);
255*2139Sjp161948 		T1 = X[9] = W[9];	ROUND_00_15(9,h,a,b,c,d,e,f,g);
256*2139Sjp161948 		T1 = X[10] = W[10];	ROUND_00_15(10,g,h,a,b,c,d,e,f);
257*2139Sjp161948 		T1 = X[11] = W[11];	ROUND_00_15(11,f,g,h,a,b,c,d,e);
258*2139Sjp161948 		T1 = X[12] = W[12];	ROUND_00_15(12,e,f,g,h,a,b,c,d);
259*2139Sjp161948 		T1 = X[13] = W[13];	ROUND_00_15(13,d,e,f,g,h,a,b,c);
260*2139Sjp161948 		T1 = X[14] = W[14];	ROUND_00_15(14,c,d,e,f,g,h,a,b);
261*2139Sjp161948 		T1 = X[15] = W[15];	ROUND_00_15(15,b,c,d,e,f,g,h,a);
262*2139Sjp161948 
263*2139Sjp161948 		data += SHA256_CBLOCK;
264*2139Sjp161948 		}
265*2139Sjp161948 	else
266*2139Sjp161948 		{
267*2139Sjp161948 		SHA_LONG l;
268*2139Sjp161948 
269*2139Sjp161948 		HOST_c2l(data,l); T1 = X[0] = l;  ROUND_00_15(0,a,b,c,d,e,f,g,h);
270*2139Sjp161948 		HOST_c2l(data,l); T1 = X[1] = l;  ROUND_00_15(1,h,a,b,c,d,e,f,g);
271*2139Sjp161948 		HOST_c2l(data,l); T1 = X[2] = l;  ROUND_00_15(2,g,h,a,b,c,d,e,f);
272*2139Sjp161948 		HOST_c2l(data,l); T1 = X[3] = l;  ROUND_00_15(3,f,g,h,a,b,c,d,e);
273*2139Sjp161948 		HOST_c2l(data,l); T1 = X[4] = l;  ROUND_00_15(4,e,f,g,h,a,b,c,d);
274*2139Sjp161948 		HOST_c2l(data,l); T1 = X[5] = l;  ROUND_00_15(5,d,e,f,g,h,a,b,c);
275*2139Sjp161948 		HOST_c2l(data,l); T1 = X[6] = l;  ROUND_00_15(6,c,d,e,f,g,h,a,b);
276*2139Sjp161948 		HOST_c2l(data,l); T1 = X[7] = l;  ROUND_00_15(7,b,c,d,e,f,g,h,a);
277*2139Sjp161948 		HOST_c2l(data,l); T1 = X[8] = l;  ROUND_00_15(8,a,b,c,d,e,f,g,h);
278*2139Sjp161948 		HOST_c2l(data,l); T1 = X[9] = l;  ROUND_00_15(9,h,a,b,c,d,e,f,g);
279*2139Sjp161948 		HOST_c2l(data,l); T1 = X[10] = l; ROUND_00_15(10,g,h,a,b,c,d,e,f);
280*2139Sjp161948 		HOST_c2l(data,l); T1 = X[11] = l; ROUND_00_15(11,f,g,h,a,b,c,d,e);
281*2139Sjp161948 		HOST_c2l(data,l); T1 = X[12] = l; ROUND_00_15(12,e,f,g,h,a,b,c,d);
282*2139Sjp161948 		HOST_c2l(data,l); T1 = X[13] = l; ROUND_00_15(13,d,e,f,g,h,a,b,c);
283*2139Sjp161948 		HOST_c2l(data,l); T1 = X[14] = l; ROUND_00_15(14,c,d,e,f,g,h,a,b);
284*2139Sjp161948 		HOST_c2l(data,l); T1 = X[15] = l; ROUND_00_15(15,b,c,d,e,f,g,h,a);
285*2139Sjp161948 		}
286*2139Sjp161948 
287*2139Sjp161948 	for (i=16;i<64;i+=8)
288*2139Sjp161948 		{
289*2139Sjp161948 		ROUND_16_63(i+0,a,b,c,d,e,f,g,h,X);
290*2139Sjp161948 		ROUND_16_63(i+1,h,a,b,c,d,e,f,g,X);
291*2139Sjp161948 		ROUND_16_63(i+2,g,h,a,b,c,d,e,f,X);
292*2139Sjp161948 		ROUND_16_63(i+3,f,g,h,a,b,c,d,e,X);
293*2139Sjp161948 		ROUND_16_63(i+4,e,f,g,h,a,b,c,d,X);
294*2139Sjp161948 		ROUND_16_63(i+5,d,e,f,g,h,a,b,c,X);
295*2139Sjp161948 		ROUND_16_63(i+6,c,d,e,f,g,h,a,b,X);
296*2139Sjp161948 		ROUND_16_63(i+7,b,c,d,e,f,g,h,a,X);
297*2139Sjp161948 		}
298*2139Sjp161948 
299*2139Sjp161948 	ctx->h[0] += a;	ctx->h[1] += b;	ctx->h[2] += c;	ctx->h[3] += d;
300*2139Sjp161948 	ctx->h[4] += e;	ctx->h[5] += f;	ctx->h[6] += g;	ctx->h[7] += h;
301*2139Sjp161948 
302*2139Sjp161948 			}
303*2139Sjp161948 	}
304*2139Sjp161948 
305*2139Sjp161948 #endif
306*2139Sjp161948 #endif /* SHA256_ASM */
307*2139Sjp161948 
308*2139Sjp161948 /*
309*2139Sjp161948  * Idea is to trade couple of cycles for some space. On IA-32 we save
310*2139Sjp161948  * about 4K in "big footprint" case. In "small footprint" case any gain
311*2139Sjp161948  * is appreciated:-)
312*2139Sjp161948  */
HASH_BLOCK_HOST_ORDER(SHA256_CTX * ctx,const void * in,size_t num)313*2139Sjp161948 void HASH_BLOCK_HOST_ORDER (SHA256_CTX *ctx, const void *in, size_t num)
314*2139Sjp161948 {   sha256_block (ctx,in,num,1);   }
315*2139Sjp161948 
HASH_BLOCK_DATA_ORDER(SHA256_CTX * ctx,const void * in,size_t num)316*2139Sjp161948 void HASH_BLOCK_DATA_ORDER (SHA256_CTX *ctx, const void *in, size_t num)
317*2139Sjp161948 {   sha256_block (ctx,in,num,0);   }
318*2139Sjp161948 
319*2139Sjp161948 #endif /* OPENSSL_NO_SHA256 */
320