mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-24 23:42:10 -04:00
77 lines
1.7 KiB
C
77 lines
1.7 KiB
C
/* hash.c
|
|
*
|
|
* Copyright (C) 2006-2015 wolfSSL Inc.
|
|
*
|
|
* This file is part of wolfSSL. (formerly known as CyaSSL)
|
|
*
|
|
* wolfSSL 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.
|
|
*
|
|
* wolfSSL 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <wolfssl/wolfcrypt/settings.h>
|
|
|
|
#if !defined(WOLFSSL_TI_HASH)
|
|
|
|
#include <wolfssl/wolfcrypt/hash.h>
|
|
|
|
#if !defined(NO_MD5)
|
|
void wc_Md5GetHash(Md5* md5, byte* hash)
|
|
{
|
|
Md5 save = *md5 ;
|
|
wc_Md5Final(md5, hash) ;
|
|
*md5 = save ;
|
|
}
|
|
|
|
WOLFSSL_API void wc_Md5RestorePos(Md5* m1, Md5* m2) {
|
|
*m1 = *m2 ;
|
|
}
|
|
#endif
|
|
|
|
#if !defined(NO_SHA)
|
|
int wc_ShaGetHash(Sha* sha, byte* hash)
|
|
{
|
|
int ret ;
|
|
Sha save = *sha ;
|
|
ret = wc_ShaFinal(sha, hash) ;
|
|
*sha = save ;
|
|
return ret ;
|
|
}
|
|
|
|
WOLFSSL_API void wc_ShaRestorePos(Sha* s1, Sha* s2) {
|
|
*s1 = *s2 ;
|
|
}
|
|
#endif
|
|
|
|
#if !defined(NO_SHA256)
|
|
int wc_Sha256GetHash(Sha256* sha256, byte* hash)
|
|
{
|
|
int ret ;
|
|
Sha256 save = *sha256 ;
|
|
ret = wc_Sha256Final(sha256, hash) ;
|
|
*sha256 = save ;
|
|
return ret ;
|
|
}
|
|
|
|
WOLFSSL_API void wc_Sha256RestorePos(Sha256* s1, Sha256* s2) {
|
|
*s1 = *s2 ;
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|