author | Palewolf |
Thu, 04 Nov 2010 00:56:26 +0100 | |
changeset 4109 | 9f5332239312 |
parent 3697 | d5b30d6373fc |
permissions | -rw-r--r-- |
316 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
2630
diff
changeset
|
3 |
* Copyright (c) 2004-2010 Andrey Korotaev <unC0Rr@gmail.com> |
316 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
3697 | 18 |
|
2630 | 19 |
{$INCLUDE "options.inc"} |
316 | 20 |
|
21 |
unit uSHA; |
|
22 |
interface |
|
23 |
uses SDLh; |
|
24 |
||
25 |
type TSHA1Context = packed record |
|
26 |
H: array[0..4] of LongWord; |
|
27 |
Length, CurrLength: Int64; |
|
28 |
Buf: array[0..63] of byte; |
|
29 |
end; |
|
368 | 30 |
TSHA1Digest = array[0..4] of LongWord; |
316 | 31 |
|
32 |
procedure SHA1Init(var Context: TSHA1Context); |
|
33 |
procedure SHA1Update(var Context: TSHA1Context; Buf: PByteArray; Length: LongWord); |
|
2157 | 34 |
procedure SHA1UpdateLongwords(var Context: TSHA1Context; Buf: PLongwordArray; Length: LongWord); |
316 | 35 |
function SHA1Final(Context: TSHA1Context): TSHA1Digest; |
36 |
||
37 |
implementation |
|
38 |
||
39 |
function rol(x: LongWord; y: Byte): LongWord; |
|
40 |
begin |
|
351 | 41 |
rol:= (X shl y) or (X shr (32 - y)) |
316 | 42 |
end; |
43 |
||
44 |
function Ft(t, b, c, d: LongWord): LongWord; |
|
45 |
begin |
|
46 |
case t of |
|
351 | 47 |
0..19: Ft := (b and c) or ((not b) and d); |
48 |
20..39: Ft := b xor c xor d; |
|
49 |
40..59: Ft := (b and c) or (b and d) or (c and d); |
|
50 |
else Ft := b xor c xor d; |
|
316 | 51 |
end; |
52 |
end; |
|
53 |
||
54 |
function Kt(t: Byte): LongWord; |
|
55 |
begin |
|
56 |
case t of |
|
351 | 57 |
0..19: Kt := $5A827999; |
58 |
20..39: Kt := $6ED9EBA1; |
|
59 |
40..59: Kt := $8F1BBCDC; |
|
316 | 60 |
else |
351 | 61 |
Kt := $CA62C1D6 |
316 | 62 |
end; |
63 |
end; |
|
64 |
||
65 |
||
66 |
procedure SHA1Hash(var Context: TSHA1Context); |
|
67 |
var S: array[0..4 ] of LongWord; |
|
68 |
W: array[0..79] of LongWord; |
|
69 |
i, t: LongWord; |
|
70 |
begin |
|
3407 | 71 |
{$HINTS OFF} |
316 | 72 |
move(Context.H, S, sizeof(S)); |
3407 | 73 |
{$HINTS ON} |
316 | 74 |
for i:= 0 to 15 do |
351 | 75 |
SDLNet_Write32(PLongWordArray(@Context.Buf)^[i], @W[i]); |
76 |
||
316 | 77 |
for i := 16 to 79 do |
78 |
W[i] := rol(W[i - 3] xor W[i - 8] xor W[i - 14] xor W[i - 16], 1); |
|
351 | 79 |
|
316 | 80 |
for i := 0 to 79 do |
81 |
begin |
|
82 |
t:= rol(S[0], 5) + Ft(i, S[1], S[2], S[3]) + S[4] + W[i] + Kt(i); |
|
83 |
S[4]:= S[3]; |
|
84 |
S[3]:= S[2]; |
|
85 |
S[2]:= rol(S[1], 30); |
|
86 |
S[1]:= S[0]; |
|
87 |
S[0]:= t |
|
88 |
end; |
|
351 | 89 |
|
316 | 90 |
for i := 0 to 4 do |
91 |
Context.H[i]:= Context.H[i] + S[i] |
|
92 |
end; |
|
93 |
||
94 |
procedure SHA1Init(var Context: TSHA1Context); |
|
95 |
begin |
|
96 |
with Context do |
|
97 |
begin |
|
98 |
Length := 0; |
|
99 |
CurrLength:= 0; |
|
100 |
H[0]:= $67452301; |
|
101 |
H[1]:= $EFCDAB89; |
|
102 |
H[2]:= $98BADCFE; |
|
103 |
H[3]:= $10325476; |
|
104 |
H[4]:= $C3D2E1F0 |
|
105 |
end |
|
106 |
end; |
|
107 |
||
108 |
procedure SHA1Update(var Context: TSHA1Context; Buf: PByteArray; Length: LongWord); |
|
368 | 109 |
var i: Longword; |
316 | 110 |
begin |
111 |
for i:= 0 to Pred(Length) do |
|
112 |
begin |
|
368 | 113 |
Context.Buf[Context.CurrLength]:= Buf^[i]; |
316 | 114 |
inc(Context.CurrLength); |
115 |
if Context.CurrLength = 64 then |
|
116 |
begin |
|
117 |
SHA1Hash(Context); |
|
118 |
inc(Context.Length, 512); |
|
119 |
Context.CurrLength:= 0 |
|
120 |
end |
|
121 |
end |
|
122 |
end; |
|
123 |
||
2157 | 124 |
procedure SHA1UpdateLongwords(var Context: TSHA1Context; Buf: PLongwordArray; Length: LongWord); |
125 |
var i: Longword; |
|
126 |
begin |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
127 |
for i:= 0 to Pred(Length div 4) do |
2157 | 128 |
begin |
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
129 |
SDLNet_Write32(Buf^[i], @Context.Buf[Context.CurrLength]); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
130 |
inc(Context.CurrLength, 4); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
131 |
if Context.CurrLength = 64 then |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
132 |
begin |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
133 |
SHA1Hash(Context); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
134 |
inc(Context.Length, 512); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
135 |
Context.CurrLength:= 0 |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
136 |
end |
2157 | 137 |
end |
138 |
end; |
|
139 |
||
316 | 140 |
function SHA1Final(Context: TSHA1Context): TSHA1Digest; |
141 |
var i: LongWord; |
|
142 |
begin |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
143 |
Context.Length:= Context.Length + Context.CurrLength shl 3; |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
144 |
Context.Buf[Context.CurrLength]:= $80; |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
145 |
inc(Context.CurrLength); |
316 | 146 |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
147 |
if Context.CurrLength > 56 then |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
148 |
begin |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
149 |
FillChar(Context.Buf[Context.CurrLength], 64 - Context.CurrLength, 0); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
150 |
Context.CurrLength:= 64; |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
151 |
SHA1Hash(Context); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
152 |
Context.CurrLength:=0 |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
153 |
end; |
316 | 154 |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
155 |
FillChar(Context.Buf[Context.CurrLength], 56 - Context.CurrLength, 0); |
316 | 156 |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
157 |
for i:= 56 to 63 do |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
158 |
Context.Buf[i] := (Context.Length shr ((63 - i) * 8)) and $FF; |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
159 |
SHA1Hash(Context); |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
160 |
for i:= 0 to 4 do |
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
161 |
SHA1Final[i]:= Context.H[i]; |
3697 | 162 |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3236
diff
changeset
|
163 |
FillChar(Context, sizeof(Context), 0) |
316 | 164 |
end; |
165 |
||
166 |
end. |