sha3_256.c
Go to the documentation of this file.
1 /**
2  * @file sha3_256.c
3  * @brief SHA3-256 hash function (SHA-3 with 256-bit output)
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneCRYPTO Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @section Description
28  *
29  * SHA-3 is a secure hash algorithm for computing a condensed representation
30  * of an electronic message. Refer to FIPS 202 for more details
31  *
32  * @author Oryx Embedded SARL (www.oryx-embedded.com)
33  * @version 2.4.0
34  **/
35 
36 //Switch to the appropriate trace level
37 #define TRACE_LEVEL CRYPTO_TRACE_LEVEL
38 
39 //Dependencies
40 #include "core/crypto.h"
41 #include "hash/sha3_256.h"
42 
43 //Check crypto library configuration
44 #if (SHA3_256_SUPPORT == ENABLED)
45 
46 //SHA3-256 object identifier (2.16.840.1.101.3.4.2.8)
47 const uint8_t SHA3_256_OID[9] = {0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x08};
48 
49 //Common interface for hash algorithms
51 {
52  "SHA3-256",
54  sizeof(SHA3_256_OID),
55  sizeof(Sha3_256Context),
59  FALSE,
64  NULL
65 };
66 
67 
68 /**
69  * @brief Digest a message using SHA3-256
70  * @param[in] data Pointer to the message being hashed
71  * @param[in] length Length of the message
72  * @param[out] digest Pointer to the calculated digest
73  * @return Error code
74  **/
75 
76 error_t sha3_256Compute(const void *data, size_t length, uint8_t *digest)
77 {
78 #if (CRYPTO_STATIC_MEM_SUPPORT == DISABLED)
79  Sha3_256Context *context;
80 #else
81  Sha3_256Context context[1];
82 #endif
83 
84  //Check parameters
85  if(data == NULL && length != 0)
87 
88  if(digest == NULL)
90 
91 #if (CRYPTO_STATIC_MEM_SUPPORT == DISABLED)
92  //Allocate a memory buffer to hold the SHA3-256 context
93  context = cryptoAllocMem(sizeof(Sha3_256Context));
94  //Failed to allocate memory?
95  if(context == NULL)
96  return ERROR_OUT_OF_MEMORY;
97 #endif
98 
99  //Initialize the SHA3-256 context
100  sha3_256Init(context);
101  //Digest the message
102  sha3_256Update(context, data, length);
103  //Finalize the SHA3-256 message digest
104  sha3_256Final(context, digest);
105 
106 #if (CRYPTO_STATIC_MEM_SUPPORT == DISABLED)
107  //Free previously allocated memory
108  cryptoFreeMem(context);
109 #endif
110 
111  //Successful processing
112  return NO_ERROR;
113 }
114 
115 
116 /**
117  * @brief Initialize SHA3-256 message digest context
118  * @param[in] context Pointer to the SHA3-256 context to initialize
119  **/
120 
122 {
123  //The capacity of the sponge is twice the digest length
124  keccakInit(context, 2 * 256);
125 }
126 
127 
128 /**
129  * @brief Update the SHA3-256 context with a portion of the message being hashed
130  * @param[in] context Pointer to the SHA3-256 context
131  * @param[in] data Pointer to the buffer being hashed
132  * @param[in] length Length of the buffer
133  **/
134 
135 void sha3_256Update(Sha3_256Context *context, const void *data, size_t length)
136 {
137  //Absorb the input data
138  keccakAbsorb(context, data, length);
139 }
140 
141 
142 /**
143  * @brief Finish the SHA3-256 message digest
144  * @param[in] context Pointer to the SHA3-256 context
145  * @param[out] digest Calculated digest (optional parameter)
146  **/
147 
148 void sha3_256Final(Sha3_256Context *context, uint8_t *digest)
149 {
150  //Finish absorbing phase (padding byte is 0x06 for SHA-3)
151  keccakFinal(context, KECCAK_SHA3_PAD);
152  //Extract data from the squeezing phase
153  keccakSqueeze(context, digest, SHA3_256_DIGEST_SIZE);
154 }
155 
156 #endif
General definitions for cryptographic algorithms.
error_t(* HashAlgoCompute)(const void *data, size_t length, uint8_t *digest)
Definition: crypto.h:956
void(* HashAlgoFinal)(void *context, uint8_t *digest)
Definition: crypto.h:963
void(* HashAlgoUpdate)(void *context, const void *data, size_t length)
Definition: crypto.h:961
#define cryptoAllocMem(size)
Definition: crypto.h:765
#define cryptoFreeMem(p)
Definition: crypto.h:770
void(* HashAlgoInit)(void *context)
Definition: crypto.h:959
error_t
Error codes.
Definition: error.h:43
@ NO_ERROR
Success.
Definition: error.h:44
@ ERROR_OUT_OF_MEMORY
Definition: error.h:63
@ ERROR_INVALID_PARAMETER
Invalid parameter.
Definition: error.h:47
uint8_t data[]
Definition: ethernet.h:222
error_t keccakInit(KeccakContext *context, uint_t capacity)
Initialize Keccak context.
Definition: keccak.c:285
void keccakFinal(KeccakContext *context, uint8_t pad)
Finish absorbing phase.
Definition: keccak.c:374
void keccakSqueeze(KeccakContext *context, uint8_t *output, size_t length)
Extract data from the squeezing phase.
Definition: keccak.c:418
#define KECCAK_SHA3_PAD
Definition: keccak.h:93
#define FALSE
Definition: os_port.h:46
void sha3_256Init(Sha3_256Context *context)
Initialize SHA3-256 message digest context.
Definition: sha3_256.c:121
const HashAlgo sha3_256HashAlgo
Definition: sha3_256.c:50
error_t sha3_256Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA3-256.
Definition: sha3_256.c:76
void sha3_256Update(Sha3_256Context *context, const void *data, size_t length)
Update the SHA3-256 context with a portion of the message being hashed.
Definition: sha3_256.c:135
const uint8_t SHA3_256_OID[9]
Definition: sha3_256.c:47
void sha3_256Final(Sha3_256Context *context, uint8_t *digest)
Finish the SHA3-256 message digest.
Definition: sha3_256.c:148
SHA3-256 hash function (SHA-3 with 256-bit output)
#define SHA3_256_BLOCK_SIZE
Definition: sha3_256.h:39
#define SHA3_256_DIGEST_SIZE
Definition: sha3_256.h:41
#define SHA3_256_MIN_PAD_SIZE
Definition: sha3_256.h:43
void keccakAbsorb(KeccakContext *context, const void *input, size_t length)
Absorb data.
Common interface for hash algorithms.
Definition: crypto.h:1014
Keccak context.
Definition: keccak.h:110
uint8_t length
Definition: tcp.h:368