Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
sha256.h
00001 /** 00002 * @file sha256.h 00003 * @brief SHA-256 (Secure Hash Algorithm 256) 00004 * 00005 * @section License 00006 * 00007 * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved. 00008 * 00009 * This file is part of CycloneCrypto Open. 00010 * 00011 * This program is free software; you can redistribute it and/or 00012 * modify it under the terms of the GNU General Public License 00013 * as published by the Free Software Foundation; either version 2 00014 * of the License, or (at your option) any later version. 00015 * 00016 * This program is distributed in the hope that it will be useful, 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 * GNU General Public License for more details. 00020 * 00021 * You should have received a copy of the GNU General Public License 00022 * along with this program; if not, write to the Free Software Foundation, 00023 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00024 * 00025 * @author Oryx Embedded SARL (www.oryx-embedded.com) 00026 * @version 1.7.6 00027 **/ 00028 00029 #ifndef _SHA256_H 00030 #define _SHA256_H 00031 00032 //Dependencies 00033 #include "crypto.h" 00034 00035 //SHA-256 block size 00036 #define SHA256_BLOCK_SIZE 64 00037 //SHA-256 digest size 00038 #define SHA256_DIGEST_SIZE 32 00039 //Common interface for hash algorithms 00040 #define SHA256_HASH_ALGO (&sha256HashAlgo) 00041 00042 00043 /** 00044 * @brief SHA-256 algorithm context 00045 **/ 00046 00047 typedef struct 00048 { 00049 union 00050 { 00051 uint32_t h[8]; 00052 uint8_t digest[32]; 00053 }; 00054 union 00055 { 00056 uint32_t w[16]; 00057 uint8_t buffer[64]; 00058 }; 00059 size_t size; 00060 uint64_t totalSize; 00061 } Sha256Context; 00062 00063 00064 //SHA-256 related constants 00065 extern const HashAlgo sha256HashAlgo; 00066 00067 //SHA-256 related functions 00068 error_t sha256Compute(const void *data, size_t length, uint8_t *digest); 00069 void sha256Init(Sha256Context *context); 00070 void sha256Update(Sha256Context *context, const void *data, size_t length); 00071 void sha256Final(Sha256Context *context, uint8_t *digest); 00072 void sha256ProcessBlock(Sha256Context *context); 00073 00074 #endif 00075
Generated on Tue Jul 12 2022 17:10:16 by
