Fork of CyaSSL for my specific settings

Dependents:   CyaSSL_Example

Fork of CyaSSL by wolf SSL

Committer:
wolfSSL
Date:
Sat Jul 12 07:18:23 2014 +0000
Revision:
0:1239e9b70ca2
CyaSSL 3.0.0;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 0:1239e9b70ca2 1 /* md5.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 #ifndef NO_MD5
wolfSSL 0:1239e9b70ca2 23
wolfSSL 0:1239e9b70ca2 24 #ifndef CTAO_CRYPT_MD5_H
wolfSSL 0:1239e9b70ca2 25 #define CTAO_CRYPT_MD5_H
wolfSSL 0:1239e9b70ca2 26
wolfSSL 0:1239e9b70ca2 27 #include <cyassl/ctaocrypt/types.h>
wolfSSL 0:1239e9b70ca2 28
wolfSSL 0:1239e9b70ca2 29 #ifdef __cplusplus
wolfSSL 0:1239e9b70ca2 30 extern "C" {
wolfSSL 0:1239e9b70ca2 31 #endif
wolfSSL 0:1239e9b70ca2 32
wolfSSL 0:1239e9b70ca2 33
wolfSSL 0:1239e9b70ca2 34 /* in bytes */
wolfSSL 0:1239e9b70ca2 35 enum {
wolfSSL 0:1239e9b70ca2 36 #ifdef STM32F2_HASH
wolfSSL 0:1239e9b70ca2 37 MD5_REG_SIZE = 4, /* STM32 register size, bytes */
wolfSSL 0:1239e9b70ca2 38 #endif
wolfSSL 0:1239e9b70ca2 39 MD5 = 0, /* hash type unique */
wolfSSL 0:1239e9b70ca2 40 MD5_BLOCK_SIZE = 64,
wolfSSL 0:1239e9b70ca2 41 MD5_DIGEST_SIZE = 16,
wolfSSL 0:1239e9b70ca2 42 MD5_PAD_SIZE = 56
wolfSSL 0:1239e9b70ca2 43 };
wolfSSL 0:1239e9b70ca2 44
wolfSSL 0:1239e9b70ca2 45 #ifdef CYASSL_PIC32MZ_HASH
wolfSSL 0:1239e9b70ca2 46 #include "port/pic32/pic32mz-crypt.h"
wolfSSL 0:1239e9b70ca2 47 #endif
wolfSSL 0:1239e9b70ca2 48
wolfSSL 0:1239e9b70ca2 49 /* MD5 digest */
wolfSSL 0:1239e9b70ca2 50 typedef struct Md5 {
wolfSSL 0:1239e9b70ca2 51 word32 buffLen; /* in bytes */
wolfSSL 0:1239e9b70ca2 52 word32 loLen; /* length in bytes */
wolfSSL 0:1239e9b70ca2 53 word32 hiLen; /* length in bytes */
wolfSSL 0:1239e9b70ca2 54 word32 buffer[MD5_BLOCK_SIZE / sizeof(word32)];
wolfSSL 0:1239e9b70ca2 55 #ifndef CYASSL_PIC32MZ_HASH
wolfSSL 0:1239e9b70ca2 56 word32 digest[MD5_DIGEST_SIZE / sizeof(word32)];
wolfSSL 0:1239e9b70ca2 57 #else
wolfSSL 0:1239e9b70ca2 58 word32 digest[PIC32_HASH_SIZE / sizeof(word32)];
wolfSSL 0:1239e9b70ca2 59 pic32mz_desc desc ; /* Crypt Engine descripter */
wolfSSL 0:1239e9b70ca2 60 #endif
wolfSSL 0:1239e9b70ca2 61 } Md5;
wolfSSL 0:1239e9b70ca2 62
wolfSSL 0:1239e9b70ca2 63 CYASSL_API void InitMd5(Md5*);
wolfSSL 0:1239e9b70ca2 64 CYASSL_API void Md5Update(Md5*, const byte*, word32);
wolfSSL 0:1239e9b70ca2 65 CYASSL_API void Md5Final(Md5*, byte*);
wolfSSL 0:1239e9b70ca2 66
wolfSSL 0:1239e9b70ca2 67 #ifdef __cplusplus
wolfSSL 0:1239e9b70ca2 68 } /* extern "C" */
wolfSSL 0:1239e9b70ca2 69 #endif
wolfSSL 0:1239e9b70ca2 70
wolfSSL 0:1239e9b70ca2 71 #endif /* CTAO_CRYPT_MD5_H */
wolfSSL 0:1239e9b70ca2 72 #endif /* NO_MD5 */
wolfSSL 0:1239e9b70ca2 73