1 /*
2 
3   sha256.h
4 
5   Author: Pekka Riikonen <priikone@silcnet.org>
6 
7   Copyright (C) 2005 Pekka Riikonen
8 
9   The contents of this file are subject to one of the Licenses specified
10   in the COPYING file;  You may not use this file except in compliance
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13 
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   information.
18 
19 */
20 
21 #ifndef SHA256_H
22 #define SHA256_H
23 
24 /*
25  * SILC Hash API for SHA256
26  */
27 
28 SILC_HASH_API_INIT(sha256);
29 SILC_HASH_API_UPDATE(sha256);
30 SILC_HASH_API_FINAL(sha256);
31 SILC_HASH_API_TRANSFORM(sha256);
32 SILC_HASH_API_CONTEXT_LEN(sha256);
33 
34 #endif /* SHA256_H */
35