1 |
1626 |
jcastillo |
/* crypto/sha/sha_locl.h */
|
2 |
|
|
/* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au)
|
3 |
|
|
* All rights reserved.
|
4 |
|
|
*
|
5 |
|
|
* This package is an SSL implementation written
|
6 |
|
|
* by Eric Young (eay@mincom.oz.au).
|
7 |
|
|
* The implementation was written so as to conform with Netscapes SSL.
|
8 |
|
|
*
|
9 |
|
|
* This library is free for commercial and non-commercial use as long as
|
10 |
|
|
* the following conditions are aheared to. The following conditions
|
11 |
|
|
* apply to all code found in this distribution, be it the RC4, RSA,
|
12 |
|
|
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
13 |
|
|
* included with this distribution is covered by the same copyright terms
|
14 |
|
|
* except that the holder is Tim Hudson (tjh@mincom.oz.au).
|
15 |
|
|
*
|
16 |
|
|
* Copyright remains Eric Young's, and as such any Copyright notices in
|
17 |
|
|
* the code are not to be removed.
|
18 |
|
|
* If this package is used in a product, Eric Young should be given attribution
|
19 |
|
|
* as the author of the parts of the library used.
|
20 |
|
|
* This can be in the form of a textual message at program startup or
|
21 |
|
|
* in documentation (online or textual) provided with the package.
|
22 |
|
|
*
|
23 |
|
|
* Redistribution and use in source and binary forms, with or without
|
24 |
|
|
* modification, are permitted provided that the following conditions
|
25 |
|
|
* are met:
|
26 |
|
|
* 1. Redistributions of source code must retain the copyright
|
27 |
|
|
* notice, this list of conditions and the following disclaimer.
|
28 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
29 |
|
|
* notice, this list of conditions and the following disclaimer in the
|
30 |
|
|
* documentation and/or other materials provided with the distribution.
|
31 |
|
|
* 3. All advertising materials mentioning features or use of this software
|
32 |
|
|
* must display the following acknowledgement:
|
33 |
|
|
* "This product includes cryptographic software written by
|
34 |
|
|
* Eric Young (eay@mincom.oz.au)"
|
35 |
|
|
* The word 'cryptographic' can be left out if the rouines from the library
|
36 |
|
|
* being used are not cryptographic related :-).
|
37 |
|
|
* 4. If you include any Windows specific code (or a derivative thereof) from
|
38 |
|
|
* the apps directory (application code) you must include an acknowledgement:
|
39 |
|
|
* "This product includes software written by Tim Hudson (tjh@mincom.oz.au)"
|
40 |
|
|
*
|
41 |
|
|
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
42 |
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
43 |
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
44 |
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
45 |
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
46 |
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
47 |
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
48 |
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
49 |
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
50 |
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
51 |
|
|
* SUCH DAMAGE.
|
52 |
|
|
*
|
53 |
|
|
* The licence and distribution terms for any publically available version or
|
54 |
|
|
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
55 |
|
|
* copied and put under another distribution licence
|
56 |
|
|
* [including the GNU Public Licence.]
|
57 |
|
|
*/
|
58 |
|
|
|
59 |
|
|
#ifdef undef
|
60 |
|
|
/* one or the other needs to be defined */
|
61 |
|
|
#ifndef SHA_1 /* FIPE 180-1 */
|
62 |
|
|
#define SHA_0 /* FIPS 180 */
|
63 |
|
|
#endif
|
64 |
|
|
#endif
|
65 |
|
|
|
66 |
|
|
#define ULONG unsigned long
|
67 |
|
|
#define UCHAR unsigned char
|
68 |
|
|
#define UINT unsigned int
|
69 |
|
|
|
70 |
|
|
#ifdef NOCONST
|
71 |
|
|
#define const
|
72 |
|
|
#endif
|
73 |
|
|
|
74 |
|
|
#undef c2nl
|
75 |
|
|
#define c2nl(c,l) (l =(((unsigned long)(*((c)++)))<<24), \
|
76 |
|
|
l|=(((unsigned long)(*((c)++)))<<16), \
|
77 |
|
|
l|=(((unsigned long)(*((c)++)))<< 8), \
|
78 |
|
|
l|=(((unsigned long)(*((c)++))) ))
|
79 |
|
|
|
80 |
|
|
#undef p_c2nl
|
81 |
|
|
#define p_c2nl(c,l,n) { \
|
82 |
|
|
switch (n) { \
|
83 |
|
|
case 0: l =((unsigned long)(*((c)++)))<<24; \
|
84 |
|
|
case 1: l|=((unsigned long)(*((c)++)))<<16; \
|
85 |
|
|
case 2: l|=((unsigned long)(*((c)++)))<< 8; \
|
86 |
|
|
case 3: l|=((unsigned long)(*((c)++))); \
|
87 |
|
|
} \
|
88 |
|
|
}
|
89 |
|
|
|
90 |
|
|
#undef c2nl_p
|
91 |
|
|
/* NOTE the pointer is not incremented at the end of this */
|
92 |
|
|
#define c2nl_p(c,l,n) { \
|
93 |
|
|
l=0; \
|
94 |
|
|
(c)+=n; \
|
95 |
|
|
switch (n) { \
|
96 |
|
|
case 3: l =((unsigned long)(*(--(c))))<< 8; \
|
97 |
|
|
case 2: l|=((unsigned long)(*(--(c))))<<16; \
|
98 |
|
|
case 1: l|=((unsigned long)(*(--(c))))<<24; \
|
99 |
|
|
} \
|
100 |
|
|
}
|
101 |
|
|
|
102 |
|
|
#undef p_c2nl_p
|
103 |
|
|
#define p_c2nl_p(c,l,sc,len) { \
|
104 |
|
|
switch (sc) \
|
105 |
|
|
{ \
|
106 |
|
|
case 0: l =((unsigned long)(*((c)++)))<<24; \
|
107 |
|
|
if (--len == 0) break; \
|
108 |
|
|
case 1: l|=((unsigned long)(*((c)++)))<<16; \
|
109 |
|
|
if (--len == 0) break; \
|
110 |
|
|
case 2: l|=((unsigned long)(*((c)++)))<< 8; \
|
111 |
|
|
} \
|
112 |
|
|
}
|
113 |
|
|
|
114 |
|
|
#undef nl2c
|
115 |
|
|
#define nl2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \
|
116 |
|
|
*((c)++)=(unsigned char)(((l)>>16)&0xff), \
|
117 |
|
|
*((c)++)=(unsigned char)(((l)>> 8)&0xff), \
|
118 |
|
|
*((c)++)=(unsigned char)(((l) )&0xff))
|
119 |
|
|
|
120 |
|
|
/* I have taken some of this code from my MD5 implementation */
|
121 |
|
|
|
122 |
|
|
#undef ROTATE
|
123 |
|
|
#if defined(WIN32)
|
124 |
|
|
#define ROTATE(a,n) _lrotl(a,n)
|
125 |
|
|
#else
|
126 |
|
|
#define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
|
127 |
|
|
#endif
|
128 |
|
|
|
129 |
|
|
/* A nice byte order reversal from Wei Dai <weidai@eskimo.com> */
|
130 |
|
|
#if defined(WIN32)
|
131 |
|
|
/* 5 instructions with rotate instruction, else 9 */
|
132 |
|
|
#define Endian_Reverse32(a) \
|
133 |
|
|
{ \
|
134 |
|
|
unsigned long l=(a); \
|
135 |
|
|
(a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
|
136 |
|
|
}
|
137 |
|
|
#else
|
138 |
|
|
/* 6 instructions with rotate instruction, else 8 */
|
139 |
|
|
#define Endian_Reverse32(a) \
|
140 |
|
|
{ \
|
141 |
|
|
unsigned long l=(a); \
|
142 |
|
|
l=(((l&0xFF00FF00)>>8L)|((l&0x00FF00FF)<<8L)); \
|
143 |
|
|
(a)=ROTATE(l,16L); \
|
144 |
|
|
}
|
145 |
|
|
#endif
|
146 |
|
|
|
147 |
|
|
/* As pointed out by Wei Dai <weidai@eskimo.com>, F() below can be
|
148 |
|
|
* simplified to the code in F_00_19. Wei attributes these optimisations
|
149 |
|
|
* to Peter Gutmann's SHS code, and he attributes it to Rich Schroeppel.
|
150 |
|
|
* #define F(x,y,z) (((x) & (y)) | ((~(x)) & (z)))
|
151 |
|
|
* I've just become aware of another tweak to be made, again from Wei Dai,
|
152 |
|
|
* in F_40_59, (x&a)|(y&a) -> (x|y)&a
|
153 |
|
|
*/
|
154 |
|
|
#define F_00_19(b,c,d) ((((c) ^ (d)) & (b)) ^ (d))
|
155 |
|
|
#define F_20_39(b,c,d) ((b) ^ (c) ^ (d))
|
156 |
|
|
#define F_40_59(b,c,d) (((b) & (c)) | (((b)|(c)) & (d)))
|
157 |
|
|
#define F_60_79(b,c,d) F_20_39(b,c,d)
|
158 |
|
|
|
159 |
|
|
#ifdef SHA_0
|
160 |
|
|
#undef Xupdate
|
161 |
|
|
#define Xupdate(a,i) \
|
162 |
|
|
X[(i)&0x0f]=(a)=\
|
163 |
|
|
(X[(i)&0x0f]^X[((i)+2)&0x0f]^X[((i)+8)&0x0f]^X[((i)+13)&0x0f]);
|
164 |
|
|
#endif
|
165 |
|
|
#ifdef SHA_1
|
166 |
|
|
#undef Xupdate
|
167 |
|
|
#define Xupdate(a,i) \
|
168 |
|
|
(a)=(X[(i)&0x0f]^X[((i)+2)&0x0f]^X[((i)+8)&0x0f]^X[((i)+13)&0x0f]); \
|
169 |
|
|
X[(i)&0x0f]=(a)=ROTATE((a),1);
|
170 |
|
|
#endif
|
171 |
|
|
|
172 |
|
|
#define BODY_00_15(i,a,b,c,d,e,f) \
|
173 |
|
|
(f)=X[i]+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
|
174 |
|
|
(b)=ROTATE((b),30);
|
175 |
|
|
|
176 |
|
|
#define BODY_16_19(i,a,b,c,d,e,f) \
|
177 |
|
|
Xupdate(f,i); \
|
178 |
|
|
(f)+=(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
|
179 |
|
|
(b)=ROTATE((b),30);
|
180 |
|
|
|
181 |
|
|
#define BODY_20_39(i,a,b,c,d,e,f) \
|
182 |
|
|
Xupdate(f,i); \
|
183 |
|
|
(f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
|
184 |
|
|
(b)=ROTATE((b),30);
|
185 |
|
|
|
186 |
|
|
#define BODY_40_59(i,a,b,c,d,e,f) \
|
187 |
|
|
Xupdate(f,i); \
|
188 |
|
|
(f)+=(e)+K_40_59+ROTATE((a),5)+F_40_59((b),(c),(d)); \
|
189 |
|
|
(b)=ROTATE((b),30);
|
190 |
|
|
|
191 |
|
|
#define BODY_60_79(i,a,b,c,d,e,f) \
|
192 |
|
|
Xupdate(f,i); \
|
193 |
|
|
(f)=X[(i)&0x0f]+(e)+K_60_79+ROTATE((a),5)+F_60_79((b),(c),(d)); \
|
194 |
|
|
(b)=ROTATE((b),30);
|
195 |
|
|
|
196 |
|
|
/*==FILEVERSION 970729==*/
|