1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- G N A T . S E C U R E _ H A S H E S --
9 -- Copyright (C) 2009, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with System
; use System
;
33 with Interfaces
; use Interfaces
;
35 package body GNAT
.Secure_Hashes
is
39 Hex_Digit
: constant array (Stream_Element
range 0 .. 15) of Character :=
42 type Fill_Buffer_Access
is
44 (M
: in out Message_State
;
48 -- A procedure to transfer data from S, starting at First, into M's block
49 -- buffer until either the block buffer is full or all data from S has been
52 procedure Fill_Buffer_Copy
53 (M
: in out Message_State
;
57 -- Transfer procedure which just copies data from S to M
59 procedure Fill_Buffer_Swap
60 (M
: in out Message_State
;
64 -- Transfer procedure which swaps bytes from S when copying into M. S must
65 -- have even length. Note that the swapping is performed considering pairs
66 -- starting at S'First, even if S'First /= First (that is, if
67 -- First = S'First then the first copied byte is always S (S'First + 1),
68 -- and if First = S'First + 1 then the first copied byte is always
71 procedure To_String
(SEA
: Stream_Element_Array
; S
: out String);
72 -- Return the hexadecimal representation of SEA
74 ----------------------
75 -- Fill_Buffer_Copy --
76 ----------------------
78 procedure Fill_Buffer_Copy
79 (M
: in out Message_State
;
84 Buf_String
: String (M
.Buffer
'Range);
85 for Buf_String
'Address use M
.Buffer
'Address;
86 pragma Import
(Ada
, Buf_String
);
88 Length
: constant Natural :=
89 Natural'Min (M
.Block_Length
- M
.Last
, S
'Last - First
+ 1);
92 pragma Assert
(Length
> 0);
94 Buf_String
(M
.Last
+ 1 .. M
.Last
+ Length
) :=
95 S
(First
.. First
+ Length
- 1);
96 M
.Last
:= M
.Last
+ Length
;
97 Last
:= First
+ Length
- 1;
100 ----------------------
101 -- Fill_Buffer_Swap --
102 ----------------------
104 procedure Fill_Buffer_Swap
105 (M
: in out Message_State
;
110 pragma Assert
(S
'Length mod 2 = 0);
111 Length
: constant Natural :=
112 Natural'Min (M
.Block_Length
- M
.Last
, S
'Last - First
+ 1);
115 while Last
- First
< Length
loop
116 M
.Buffer
(M
.Last
+ 1 + Last
- First
) :=
117 (if (Last
- S
'First) mod 2 = 0
122 M
.Last
:= M
.Last
+ Length
;
123 Last
:= First
+ Length
- 1;
124 end Fill_Buffer_Swap
;
130 procedure To_String
(SEA
: Stream_Element_Array
; S
: out String) is
131 pragma Assert
(S
'Length = 2 * SEA
'Length);
133 for J
in SEA
'Range loop
135 S_J
: constant Natural := 1 + Natural (J
- SEA
'First) * 2;
137 S
(S_J
) := Hex_Digit
(SEA
(J
) / 16);
138 S
(S_J
+ 1) := Hex_Digit
(SEA
(J
) mod 16);
152 Fill_Buffer
: Fill_Buffer_Access
);
153 -- Internal common routine for all Update procedures
157 Hash_Bits
: out Ada
.Streams
.Stream_Element_Array
);
158 -- Perform final hashing operations (data padding) and extract the
159 -- (possibly truncated) state of C into Hash_Bits.
165 function Digest
(C
: Context
) return Message_Digest
is
166 Hash_Bits
: Stream_Element_Array
167 (1 .. Stream_Element_Offset
(Hash_Length
));
169 Final
(C
, Hash_Bits
);
170 return MD
: Message_Digest
do
171 To_String
(Hash_Bits
, MD
);
175 function Digest
(S
: String) return Message_Digest
is
182 function Digest
(A
: Stream_Element_Array
) return Message_Digest
is
193 -- Once a complete message has been processed, it is padded with one
194 -- 1 bit followed by enough 0 bits so that the last block is
195 -- 2 * Word'Size bits short of being completed. The last 2 * Word'Size
196 -- bits are set to the message size in bits (excluding padding).
200 Hash_Bits
: out Stream_Element_Array
)
205 -- Number of 0 bytes in padding
207 Message_Length
: Unsigned_64
:= FC
.M_State
.Length
;
208 -- Message length in bytes
210 Size_Length
: constant Natural :=
211 2 * Hash_State
.Word
'Size / 8;
212 -- Length in bytes of the size representation
215 Zeroes
:= (Block_Length
- 1 - Size_Length
- FC
.M_State
.Last
)
216 mod FC
.M_State
.Block_Length
;
218 Pad
: String (1 .. 1 + Zeroes
+ Size_Length
) :=
219 (1 => Character'Val (128), others => ASCII
.NUL
);
222 First_Index
: Natural;
225 First_Index
:= (if Hash_Bit_Order
= Low_Order_First
226 then Pad
'Last - Size_Length
+ 1
229 Index
:= First_Index
;
230 while Message_Length
> 0 loop
231 if Index
= First_Index
then
233 -- Message_Length is in bytes, but we need to store it as
236 Pad
(Index
) := Character'Val
237 (Shift_Left
(Message_Length
and 16#
1f#
, 3));
238 Message_Length
:= Shift_Right
(Message_Length
, 5);
241 Pad
(Index
) := Character'Val (Message_Length
and 16#ff#
);
242 Message_Length
:= Shift_Right
(Message_Length
, 8);
246 (if Hash_Bit_Order
= Low_Order_First
then 1 else -1);
252 pragma Assert
(FC
.M_State
.Last
= 0);
254 Hash_State
.To_Hash
(FC
.H_State
, Hash_Bits
);
264 Fill_Buffer
: Fill_Buffer_Access
)
266 Last
: Natural := S
'First - 1;
269 C
.M_State
.Length
:= C
.M_State
.Length
+ S
'Length;
271 while Last
< S
'Last loop
272 Fill_Buffer
(C
.M_State
, S
, Last
+ 1, Last
);
274 if C
.M_State
.Last
= Block_Length
then
275 Transform
(C
.H_State
, C
.M_State
);
286 procedure Update
(C
: in out Context
; Input
: String) is
288 Update
(C
, Input
, Fill_Buffer_Copy
'Access);
295 procedure Update
(C
: in out Context
; Input
: Stream_Element_Array
) is
296 S
: String (1 .. Input
'Length);
297 for S
'Address use Input
'Address;
298 pragma Import
(Ada
, S
);
300 Update
(C
, S
, Fill_Buffer_Copy
'Access);
307 procedure Wide_Update
(C
: in out Context
; Input
: Wide_String) is
308 S
: String (1 .. 2 * Input
'Length);
309 for S
'Address use Input
'Address;
310 pragma Import
(Ada
, S
);
314 (if System
.Default_Bit_Order
/= Low_Order_First
315 then Fill_Buffer_Swap
'Access
316 else Fill_Buffer_Copy
'Access));
323 function Wide_Digest
(W
: Wide_String) return Message_Digest
is
332 -------------------------
333 -- Hash_Function_State --
334 -------------------------
336 package body Hash_Function_State
is
342 procedure To_Hash
(H
: State
; H_Bits
: out Stream_Element_Array
) is
343 Hash_Words
: constant Natural := H
'Size / Word
'Size;
344 Result
: State
(1 .. Hash_Words
) :=
345 H
(H
'Last - Hash_Words
+ 1 .. H
'Last);
347 R_SEA
: Stream_Element_Array
(1 .. Result
'Size / 8);
348 for R_SEA
'Address use Result
'Address;
349 pragma Import
(Ada
, R_SEA
);
352 if System
.Default_Bit_Order
/= Hash_Bit_Order
then
353 for J
in Result
'Range loop
354 Swap
(Result
(J
)'Address);
358 -- Return truncated hash
360 pragma Assert
(H_Bits
'Length <= R_SEA
'Length);
361 H_Bits
:= R_SEA
(R_SEA
'First .. R_SEA
'First + H_Bits
'Length - 1);
364 end Hash_Function_State
;
366 end GNAT
.Secure_Hashes
;