]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/CyaSSL/cyassl/ctaocrypt/sha256.h
179a78031f563396c49d53944212086f4171ba4b
[freertos] / FreeRTOS-Plus / Source / CyaSSL / cyassl / ctaocrypt / sha256.h
1 /* sha256.h
2  *
3  * Copyright (C) 2006-2012 Sawtooth Consulting Ltd.
4  *
5  * This file is part of CyaSSL.
6  *
7  * CyaSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * CyaSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20  */
21
22
23 /* code submitted by raphael.huck@efixo.com */
24
25
26 #ifndef NO_SHA256
27
28 #ifndef CTAO_CRYPT_SHA256_H
29 #define CTAO_CRYPT_SHA256_H
30
31 #include <cyassl/ctaocrypt/types.h>
32
33 #ifdef __cplusplus
34     extern "C" {
35 #endif
36
37
38 /* in bytes */
39 enum {
40     SHA256              =  2,   /* hash type unique */
41     SHA256_BLOCK_SIZE   = 64,
42     SHA256_DIGEST_SIZE  = 32,
43     SHA256_PAD_SIZE     = 56
44 };
45
46
47 /* Sha256 digest */
48 typedef struct Sha256 {
49     word32  buffLen;   /* in bytes          */
50     word32  loLen;     /* length in bytes   */
51     word32  hiLen;     /* length in bytes   */
52     word32  digest[SHA256_DIGEST_SIZE / sizeof(word32)];
53     word32  buffer[SHA256_BLOCK_SIZE  / sizeof(word32)];
54 } Sha256;
55
56
57 CYASSL_API void InitSha256(Sha256*);
58 CYASSL_API void Sha256Update(Sha256*, const byte*, word32);
59 CYASSL_API void Sha256Final(Sha256*, byte*);
60
61
62 #ifdef __cplusplus
63     } /* extern "C" */
64 #endif
65
66 #endif /* CTAO_CRYPT_SHA256_H */
67 #endif /* NO_SHA256 */
68