2011-08-25 23:41:19 +04:00
|
|
|
/* sha.h
|
2011-02-05 22:14:47 +03:00
|
|
|
*
|
2013-02-06 00:44:17 +04:00
|
|
|
* Copyright (C) 2006-2013 wolfSSL Inc.
|
2011-02-05 22:14:47 +03:00
|
|
|
*
|
|
|
|
* This file is part of CyaSSL.
|
|
|
|
*
|
|
|
|
* CyaSSL is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* CyaSSL is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-04-10 23:42:51 +04:00
|
|
|
#ifndef NO_SHA
|
|
|
|
|
2011-02-05 22:14:47 +03:00
|
|
|
#ifndef CTAO_CRYPT_SHA_H
|
|
|
|
#define CTAO_CRYPT_SHA_H
|
|
|
|
|
2011-08-25 23:41:19 +04:00
|
|
|
#include <cyassl/ctaocrypt/types.h>
|
2011-02-05 22:14:47 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* in bytes */
|
|
|
|
enum {
|
2013-05-15 20:48:35 +04:00
|
|
|
#ifdef STM32F2_HASH
|
2012-12-27 02:16:39 +04:00
|
|
|
SHA_REG_SIZE = 4, /* STM32 register size, bytes */
|
|
|
|
#endif
|
2011-02-05 22:14:47 +03:00
|
|
|
SHA = 1, /* hash type unique */
|
|
|
|
SHA_BLOCK_SIZE = 64,
|
|
|
|
SHA_DIGEST_SIZE = 20,
|
|
|
|
SHA_PAD_SIZE = 56
|
|
|
|
};
|
|
|
|
|
2014-03-04 17:09:38 +04:00
|
|
|
#ifdef CYASSL_PIC32MZ_HASH
|
|
|
|
#include "port/pic32/pic32mz-crypt.h"
|
|
|
|
#endif
|
2011-02-05 22:14:47 +03:00
|
|
|
|
|
|
|
/* Sha digest */
|
|
|
|
typedef struct Sha {
|
|
|
|
word32 buffLen; /* in bytes */
|
|
|
|
word32 loLen; /* length in bytes */
|
|
|
|
word32 hiLen; /* length in bytes */
|
|
|
|
word32 buffer[SHA_BLOCK_SIZE / sizeof(word32)];
|
2014-03-04 17:09:38 +04:00
|
|
|
#ifndef CYASSL_PIC32MZ_HASH
|
|
|
|
word32 digest[SHA_DIGEST_SIZE / sizeof(word32)];
|
|
|
|
#else
|
|
|
|
word32 digest[PIC32_HASH_SIZE / sizeof(word32)];
|
|
|
|
pic32mz_desc desc ; /* Crypt Engine descripter */
|
|
|
|
#endif
|
2011-02-05 22:14:47 +03:00
|
|
|
} Sha;
|
|
|
|
|
|
|
|
|
2011-04-27 02:41:16 +04:00
|
|
|
CYASSL_API void InitSha(Sha*);
|
|
|
|
CYASSL_API void ShaUpdate(Sha*, const byte*, word32);
|
|
|
|
CYASSL_API void ShaFinal(Sha*, byte*);
|
2011-02-05 22:14:47 +03:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CTAO_CRYPT_SHA_H */
|
2013-04-10 23:42:51 +04:00
|
|
|
#endif /* NO_SHA */
|
2011-02-05 22:14:47 +03:00
|
|
|
|