1/* sha.h
2
3 This file is deprecated, and provided only for backwards
4 compatibility with earlier versions of Nettle. Please use sha1.h
5 and/or sha2.h instead.
6
7 Copyright (C) 2001 Niels Möller
8
9 This file is part of GNU Nettle.
10
11 GNU Nettle is free software: you can redistribute it and/or
12 modify it under the terms of either:
13
14 * the GNU Lesser General Public License as published by the Free
15 Software Foundation; either version 3 of the License, or (at your
16 option) any later version.
17
18 or
19
20 * the GNU General Public License as published by the Free
21 Software Foundation; either version 2 of the License, or (at your
22 option) any later version.
23
24 or both in parallel, as here.
25
26 GNU Nettle is distributed in the hope that it will be useful,
27 but WITHOUT ANY WARRANTY; without even the implied warranty of
28 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29 General Public License for more details.
30
31 You should have received copies of the GNU General Public License and
32 the GNU Lesser General Public License along with this program. If
33 not, see http://www.gnu.org/licenses/.
34*/
35
36#ifndef NETTLE_SHA_H_INCLUDED
37#define NETTLE_SHA_H_INCLUDED
38
39#include "sha1.h"
40#include "sha2.h"
41
42#endif /* NETTLE_SHA_H_INCLUDED */
43