CyaSSL 3.0.0

Dependents:   HTTPClient-SSL HTTPClient HTTPClient-SSL http_access ... more

Committer:
wolfSSL
Date:
Wed Dec 03 05:24:18 2014 +0000
Revision:
3:64d4f7cb83d5
Parent:
0:1239e9b70ca2
added IGNORE_KEY_EXTENSIONS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 0:1239e9b70ca2 1 /* sha.h
wolfSSL 0:1239e9b70ca2 2 *
wolfSSL 0:1239e9b70ca2 3 * Copyright (C) 2006-2014 wolfSSL Inc.
wolfSSL 0:1239e9b70ca2 4 *
wolfSSL 0:1239e9b70ca2 5 * This file is part of CyaSSL.
wolfSSL 0:1239e9b70ca2 6 *
wolfSSL 0:1239e9b70ca2 7 * CyaSSL is free software; you can redistribute it and/or modify
wolfSSL 0:1239e9b70ca2 8 * it under the terms of the GNU General Public License as published by
wolfSSL 0:1239e9b70ca2 9 * the Free Software Foundation; either version 2 of the License, or
wolfSSL 0:1239e9b70ca2 10 * (at your option) any later version.
wolfSSL 0:1239e9b70ca2 11 *
wolfSSL 0:1239e9b70ca2 12 * CyaSSL is distributed in the hope that it will be useful,
wolfSSL 0:1239e9b70ca2 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wolfSSL 0:1239e9b70ca2 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wolfSSL 0:1239e9b70ca2 15 * GNU General Public License for more details.
wolfSSL 0:1239e9b70ca2 16 *
wolfSSL 0:1239e9b70ca2 17 * You should have received a copy of the GNU General Public License
wolfSSL 0:1239e9b70ca2 18 * along with this program; if not, write to the Free Software
wolfSSL 0:1239e9b70ca2 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
wolfSSL 0:1239e9b70ca2 20 */
wolfSSL 0:1239e9b70ca2 21
wolfSSL 0:1239e9b70ca2 22
wolfSSL 0:1239e9b70ca2 23 #ifndef NO_SHA
wolfSSL 0:1239e9b70ca2 24
wolfSSL 0:1239e9b70ca2 25 #ifndef CTAO_CRYPT_SHA_H
wolfSSL 0:1239e9b70ca2 26 #define CTAO_CRYPT_SHA_H
wolfSSL 0:1239e9b70ca2 27
wolfSSL 0:1239e9b70ca2 28 #include <cyassl/ctaocrypt/types.h>
wolfSSL 0:1239e9b70ca2 29
wolfSSL 0:1239e9b70ca2 30 #ifdef __cplusplus
wolfSSL 0:1239e9b70ca2 31 extern "C" {
wolfSSL 0:1239e9b70ca2 32 #endif
wolfSSL 0:1239e9b70ca2 33
wolfSSL 0:1239e9b70ca2 34
wolfSSL 0:1239e9b70ca2 35 /* in bytes */
wolfSSL 0:1239e9b70ca2 36 enum {
wolfSSL 0:1239e9b70ca2 37 #ifdef STM32F2_HASH
wolfSSL 0:1239e9b70ca2 38 SHA_REG_SIZE = 4, /* STM32 register size, bytes */
wolfSSL 0:1239e9b70ca2 39 #endif
wolfSSL 0:1239e9b70ca2 40 SHA = 1, /* hash type unique */
wolfSSL 0:1239e9b70ca2 41 SHA_BLOCK_SIZE = 64,
wolfSSL 0:1239e9b70ca2 42 SHA_DIGEST_SIZE = 20,
wolfSSL 0:1239e9b70ca2 43 SHA_PAD_SIZE = 56
wolfSSL 0:1239e9b70ca2 44 };
wolfSSL 0:1239e9b70ca2 45
wolfSSL 0:1239e9b70ca2 46 #ifdef CYASSL_PIC32MZ_HASH
wolfSSL 0:1239e9b70ca2 47 #include "port/pic32/pic32mz-crypt.h"
wolfSSL 0:1239e9b70ca2 48 #endif
wolfSSL 0:1239e9b70ca2 49
wolfSSL 0:1239e9b70ca2 50 /* Sha digest */
wolfSSL 0:1239e9b70ca2 51 typedef struct Sha {
wolfSSL 0:1239e9b70ca2 52 word32 buffLen; /* in bytes */
wolfSSL 0:1239e9b70ca2 53 word32 loLen; /* length in bytes */
wolfSSL 0:1239e9b70ca2 54 word32 hiLen; /* length in bytes */
wolfSSL 0:1239e9b70ca2 55 word32 buffer[SHA_BLOCK_SIZE / sizeof(word32)];
wolfSSL 0:1239e9b70ca2 56 #ifndef CYASSL_PIC32MZ_HASH
wolfSSL 0:1239e9b70ca2 57 word32 digest[SHA_DIGEST_SIZE / sizeof(word32)];
wolfSSL 0:1239e9b70ca2 58 #else
wolfSSL 0:1239e9b70ca2 59 word32 digest[PIC32_HASH_SIZE / sizeof(word32)];
wolfSSL 0:1239e9b70ca2 60 pic32mz_desc desc; /* Crypt Engine descripter */
wolfSSL 0:1239e9b70ca2 61 #endif
wolfSSL 0:1239e9b70ca2 62 } Sha;
wolfSSL 0:1239e9b70ca2 63
wolfSSL 0:1239e9b70ca2 64
wolfSSL 0:1239e9b70ca2 65 CYASSL_API int InitSha(Sha*);
wolfSSL 0:1239e9b70ca2 66 CYASSL_API int ShaUpdate(Sha*, const byte*, word32);
wolfSSL 0:1239e9b70ca2 67 CYASSL_API int ShaFinal(Sha*, byte*);
wolfSSL 0:1239e9b70ca2 68
wolfSSL 0:1239e9b70ca2 69
wolfSSL 0:1239e9b70ca2 70 #ifdef HAVE_FIPS
wolfSSL 0:1239e9b70ca2 71 /* fips wrapper calls, user can call direct */
wolfSSL 0:1239e9b70ca2 72 CYASSL_API int InitSha_fips(Sha*);
wolfSSL 0:1239e9b70ca2 73 CYASSL_API int ShaUpdate_fips(Sha*, const byte*, word32);
wolfSSL 0:1239e9b70ca2 74 CYASSL_API int ShaFinal_fips(Sha*, byte*);
wolfSSL 0:1239e9b70ca2 75 #ifndef FIPS_NO_WRAPPERS
wolfSSL 0:1239e9b70ca2 76 /* if not impl or fips.c impl wrapper force fips calls if fips build */
wolfSSL 0:1239e9b70ca2 77 #define InitSha InitSha_fips
wolfSSL 0:1239e9b70ca2 78 #define ShaUpdate ShaUpdate_fips
wolfSSL 0:1239e9b70ca2 79 #define ShaFinal ShaFinal_fips
wolfSSL 0:1239e9b70ca2 80 #endif /* FIPS_NO_WRAPPERS */
wolfSSL 0:1239e9b70ca2 81
wolfSSL 0:1239e9b70ca2 82 #endif /* HAVE_FIPS */
wolfSSL 0:1239e9b70ca2 83
wolfSSL 0:1239e9b70ca2 84
wolfSSL 0:1239e9b70ca2 85 #ifdef __cplusplus
wolfSSL 0:1239e9b70ca2 86 } /* extern "C" */
wolfSSL 0:1239e9b70ca2 87 #endif
wolfSSL 0:1239e9b70ca2 88
wolfSSL 0:1239e9b70ca2 89 #endif /* CTAO_CRYPT_SHA_H */
wolfSSL 0:1239e9b70ca2 90 #endif /* NO_SHA */
wolfSSL 0:1239e9b70ca2 91
wolfSSL 0:1239e9b70ca2 92