]> begriffs open source - freertos/blob - FreeRTOS-Plus/Source/WolfSSL/wolfssl/wolfcrypt/sha.h
Update WolfSSL library to the latest version.
[freertos] / FreeRTOS-Plus / Source / WolfSSL / wolfssl / wolfcrypt / sha.h
1 /* sha.h
2  *
3  * Copyright (C) 2006-2015 wolfSSL Inc.
4  *
5  * This file is part of wolfSSL. (formerly known as CyaSSL)
6  *
7  * wolfSSL 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  * wolfSSL 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #ifndef WOLF_CRYPT_SHA_H
23 #define WOLF_CRYPT_SHA_H
24
25 #include <wolfssl/wolfcrypt/types.h>
26
27 #ifndef NO_SHA
28
29 #ifdef HAVE_FIPS
30 /* for fips @wc_fips */
31 #include <cyassl/ctaocrypt/sha.h>
32 #endif
33
34 #ifdef __cplusplus
35     extern "C" {
36 #endif
37
38 #ifndef HAVE_FIPS /* avoid redefining structs */
39 /* in bytes */
40 enum {
41 #ifdef STM32F2_HASH
42     SHA_REG_SIZE     =  4,    /* STM32 register size, bytes */
43 #endif
44     SHA              =  1,    /* hash type unique */
45     SHA_BLOCK_SIZE   = 64,
46     SHA_DIGEST_SIZE  = 20,
47     SHA_PAD_SIZE     = 56
48 };
49
50 #ifdef WOLFSSL_PIC32MZ_HASH
51 #include "port/pic32/pic32mz-crypt.h"
52 #endif
53
54 #ifndef WOLFSSL_TI_HASH
55       
56 /* Sha digest */
57 typedef struct Sha {
58     word32  buffLen;   /* in bytes          */
59     word32  loLen;     /* length in bytes   */
60     word32  hiLen;     /* length in bytes   */
61     word32  buffer[SHA_BLOCK_SIZE  / sizeof(word32)];
62     #ifndef WOLFSSL_PIC32MZ_HASH
63         word32  digest[SHA_DIGEST_SIZE / sizeof(word32)];
64     #else
65         word32  digest[PIC32_HASH_SIZE / sizeof(word32)];
66         pic32mz_desc desc; /* Crypt Engine descripter */
67     #endif
68 } Sha;
69
70 #else /* WOLFSSL_TI_HASH */
71     #include "wolfssl/wolfcrypt/port/ti/ti-hash.h"
72 #endif
73
74 #endif /* HAVE_FIPS */
75
76 WOLFSSL_API int wc_InitSha(Sha*);
77 WOLFSSL_API int wc_ShaUpdate(Sha*, const byte*, word32);
78 WOLFSSL_API int wc_ShaFinal(Sha*, byte*);
79 WOLFSSL_API int wc_ShaHash(const byte*, word32, byte*);
80
81 #ifdef __cplusplus
82     } /* extern "C" */
83 #endif
84
85 #endif /* NO_SHA */
86 #endif /* WOLF_CRYPT_SHA_H */
87