sha3_224.h
Go to the documentation of this file.
1 /**
2  * @file sha3_224.h
3  * @brief SHA3-224 hash function (SHA-3 with 224-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  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.0
29  **/
30 
31 #ifndef _SHA3_224_H
32 #define _SHA3_224_H
33 
34 //Dependencies
35 #include "core/crypto.h"
36 #include "xof/keccak.h"
37 
38 //SHA3-224 block size
39 #define SHA3_224_BLOCK_SIZE 144
40 //SHA3-224 digest size
41 #define SHA3_224_DIGEST_SIZE 28
42 //Minimum length of the padding string
43 #define SHA3_224_MIN_PAD_SIZE 1
44 //Common interface for hash algorithms
45 #define SHA3_224_HASH_ALGO (&sha3_224HashAlgo)
46 
47 //C++ guard
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
51 
52 
53 /**
54  * @brief SHA3-224 algorithm context
55  **/
56 
58 
59 
60 //SHA3-224 related constants
61 extern const uint8_t SHA3_224_OID[9];
62 extern const HashAlgo sha3_224HashAlgo;
63 
64 //SHA3-224 related functions
65 error_t sha3_224Compute(const void *data, size_t length, uint8_t *digest);
66 void sha3_224Init(Sha3_224Context *context);
67 void sha3_224Update(Sha3_224Context *context, const void *data, size_t length);
68 void sha3_224Final(Sha3_224Context *context, uint8_t *digest);
69 
70 //C++ guard
71 #ifdef __cplusplus
72 }
73 #endif
74 
75 #endif
General definitions for cryptographic algorithms.
error_t
Error codes.
Definition: error.h:43
uint8_t data[]
Definition: ethernet.h:222
Keccak sponge function.
void sha3_224Init(Sha3_224Context *context)
Initialize SHA3-224 message digest context.
Definition: sha3_224.c:121
void sha3_224Final(Sha3_224Context *context, uint8_t *digest)
Finish the SHA3-224 message digest.
Definition: sha3_224.c:148
error_t sha3_224Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA3-224.
Definition: sha3_224.c:76
const uint8_t SHA3_224_OID[9]
Definition: sha3_224.c:47
const HashAlgo sha3_224HashAlgo
Definition: sha3_224.c:50
KeccakContext Sha3_224Context
SHA3-224 algorithm context.
Definition: sha3_224.h:57
void sha3_224Update(Sha3_224Context *context, const void *data, size_t length)
Update the SHA3-224 context with a portion of the message being hashed.
Definition: sha3_224.c:135
Common interface for hash algorithms.
Definition: crypto.h:1014
Keccak context.
Definition: keccak.h:110
uint8_t length
Definition: tcp.h:368