OSDN Git Service

Fix header.
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-sehash.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --            S Y S T E M . S E C U R E _ H A S H E S . S H A 1             --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --         Copyright (C) 2002-2009, Free Software Foundation, Inc.          --
10 --                                                                          --
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.                                     --
17 --                                                                          --
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.               --
21 --                                                                          --
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/>.                                          --
26 --                                                                          --
27 -- GNAT was originally developed  by the GNAT team at  New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
29 --                                                                          --
30 ------------------------------------------------------------------------------
31
32 --  This package provides supporting code for implementation of the SHA-1
33 --  secure hash function as decsribed in FIPS PUB 180-3. The complete text
34 --  of FIPS PUB 180-3 can be found at:
35 --    http://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf
36
37 with GNAT.Byte_Swapping;
38 with Interfaces;
39
40 package System.Secure_Hashes.SHA1 is
41
42    package Hash_State is new Hash_Function_State
43      (Word           => Interfaces.Unsigned_32,
44       Swap           => GNAT.Byte_Swapping.Swap4,
45       Hash_Bit_Order => System.High_Order_First);
46    --  SHA-1 operates on 32-bit big endian words
47
48    Block_Words : constant := 16;
49    --  Messages are processed in chunks of 16 words
50
51    procedure Transform
52      (H : in out Hash_State.State;
53       M : in out Message_State);
54    --  Transformation function applied for each block
55
56    Initial_State : constant Hash_State.State;
57    --  Initialization vector
58
59 private
60
61    Initial_State : constant Hash_State.State :=
62                      (0 => 16#67452301#,
63                       1 => 16#EFCDAB89#,
64                       2 => 16#98BADCFE#,
65                       3 => 16#10325476#,
66                       4 => 16#C3D2E1F0#);
67    --  Initialization vector from FIPS PUB 180-3
68
69 end System.Secure_Hashes.SHA1;