author | koda |
Sat, 17 Apr 2010 04:59:10 +0000 | |
changeset 3352 | ac5d14a35482 |
parent 3236 | 4ab3917d7d44 |
child 3369 | c7289e42f0ee |
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 |
*) |
|
2630 | 18 |
|
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 |
|
71 |
move(Context.H, S, sizeof(S)); |
|
72 |
for i:= 0 to 15 do |
|
351 | 73 |
SDLNet_Write32(PLongWordArray(@Context.Buf)^[i], @W[i]); |
74 |
||
316 | 75 |
for i := 16 to 79 do |
76 |
W[i] := rol(W[i - 3] xor W[i - 8] xor W[i - 14] xor W[i - 16], 1); |
|
351 | 77 |
|
316 | 78 |
for i := 0 to 79 do |
79 |
begin |
|
80 |
t:= rol(S[0], 5) + Ft(i, S[1], S[2], S[3]) + S[4] + W[i] + Kt(i); |
|
81 |
S[4]:= S[3]; |
|
82 |
S[3]:= S[2]; |
|
83 |
S[2]:= rol(S[1], 30); |
|
84 |
S[1]:= S[0]; |
|
85 |
S[0]:= t |
|
86 |
end; |
|
351 | 87 |
|
316 | 88 |
for i := 0 to 4 do |
89 |
Context.H[i]:= Context.H[i] + S[i] |
|
90 |
end; |
|
91 |
||
92 |
procedure SHA1Init(var Context: TSHA1Context); |
|
93 |
begin |
|
94 |
with Context do |
|
95 |
begin |
|
96 |
Length := 0; |
|
97 |
CurrLength:= 0; |
|
98 |
H[0]:= $67452301; |
|
99 |
H[1]:= $EFCDAB89; |
|
100 |
H[2]:= $98BADCFE; |
|
101 |
H[3]:= $10325476; |
|
102 |
H[4]:= $C3D2E1F0 |
|
103 |
end |
|
104 |
end; |
|
105 |
||
106 |
procedure SHA1Update(var Context: TSHA1Context; Buf: PByteArray; Length: LongWord); |
|
368 | 107 |
var i: Longword; |
316 | 108 |
begin |
109 |
for i:= 0 to Pred(Length) do |
|
110 |
begin |
|
368 | 111 |
Context.Buf[Context.CurrLength]:= Buf^[i]; |
316 | 112 |
inc(Context.CurrLength); |
113 |
if Context.CurrLength = 64 then |
|
114 |
begin |
|
115 |
SHA1Hash(Context); |
|
116 |
inc(Context.Length, 512); |
|
117 |
Context.CurrLength:= 0 |
|
118 |
end |
|
119 |
end |
|
120 |
end; |
|
121 |
||
2157 | 122 |
procedure SHA1UpdateLongwords(var Context: TSHA1Context; Buf: PLongwordArray; Length: LongWord); |
123 |
var i: Longword; |
|
124 |
begin |
|
125 |
for i:= 0 to Pred(Length div 4) do |
|
126 |
begin |
|
127 |
SDLNet_Write32(Buf^[i], @Context.Buf[Context.CurrLength]); |
|
128 |
inc(Context.CurrLength, 4); |
|
129 |
if Context.CurrLength = 64 then |
|
130 |
begin |
|
131 |
SHA1Hash(Context); |
|
132 |
inc(Context.Length, 512); |
|
133 |
Context.CurrLength:= 0 |
|
134 |
end |
|
135 |
end |
|
136 |
end; |
|
137 |
||
316 | 138 |
function SHA1Final(Context: TSHA1Context): TSHA1Digest; |
139 |
var i: LongWord; |
|
140 |
begin |
|
141 |
Context.Length:= Context.Length + Context.CurrLength shl 3; |
|
142 |
Context.Buf[Context.CurrLength]:= $80; |
|
143 |
inc(Context.CurrLength); |
|
144 |
||
145 |
if Context.CurrLength > 56 then |
|
146 |
begin |
|
147 |
FillChar(Context.Buf[Context.CurrLength], 64 - Context.CurrLength, 0); |
|
148 |
Context.CurrLength:= 64; |
|
149 |
SHA1Hash(Context); |
|
150 |
Context.CurrLength:=0 |
|
151 |
end; |
|
152 |
||
153 |
FillChar(Context.Buf[Context.CurrLength], 56 - Context.CurrLength, 0); |
|
154 |
||
155 |
for i:= 56 to 63 do |
|
156 |
Context.Buf[i] := (Context.Length shr ((63 - i) * 8)) and $FF; |
|
157 |
SHA1Hash(Context); |
|
368 | 158 |
for i:= 0 to 4 do SHA1Final[i]:= Context.H[i]; |
159 |
FillChar(Context, sizeof(Context), 0) |
|
316 | 160 |
end; |
161 |
||
162 |
end. |