shake.h
Go to the documentation of this file.
1 /**
2  * @file shake.h
3  * @brief SHAKE128 and SHAKE256 extendable-output functions
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2025 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.5.4
29  **/
30 
31 #ifndef _SHAKE_H
32 #define _SHAKE_H
33 
34 //Dependencies
35 #include "core/crypto.h"
36 #include "xof/keccak.h"
37 
38 //Common interface for XOF algorithms
39 #define SHAKE128_XOF_ALGO (&shake128XofAlgo)
40 #define SHAKE256_XOF_ALGO (&shake256XofAlgo)
41 
42 //C++ guard
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46 
47 
48 /**
49  * @brief SHAKE algorithm context
50  **/
51 
52 typedef struct
53 {
55 } ShakeContext;
56 
57 
58 //SHAKE related constants
59 extern const uint8_t SHAKE128_OID[9];
60 extern const uint8_t SHAKE256_OID[9];
61 extern const XofAlgo shake128XofAlgo;
62 extern const XofAlgo shake256XofAlgo;
63 
64 //SHAKE related functions
65 error_t shakeCompute(uint_t strength, const void *input, size_t inputLen,
66  uint8_t *output, size_t outputLen);
67 
68 error_t shake128Compute(const void *input, size_t inputLen, uint8_t *output,
69  size_t outputLen);
70 
71 error_t shake256Compute(const void *input, size_t inputLen, uint8_t *output,
72  size_t outputLen);
73 
74 error_t shakeInit(ShakeContext *context, uint_t strength);
77 
78 void shakeAbsorb(ShakeContext *context, const void *input, size_t length);
79 void shakeFinal(ShakeContext *context);
80 void shakeSqueeze(ShakeContext *context, uint8_t *output, size_t length);
81 
82 //C++ guard
83 #ifdef __cplusplus
84 }
85 #endif
86 
87 #endif
error_t shake256Init(ShakeContext *context)
Initialize SHAKE256 context.
Definition: shake.c:223
Keccak context.
Definition: keccak.h:116
const XofAlgo shake128XofAlgo
Definition: shake.c:53
const uint8_t SHAKE128_OID[9]
Definition: shake.c:48
error_t shakeInit(ShakeContext *context, uint_t strength)
Initialize SHAKE context.
Definition: shake.c:183
error_t
Error codes.
Definition: error.h:43
void shakeFinal(ShakeContext *context)
Finish absorbing phase.
Definition: shake.c:249
General definitions for cryptographic algorithms.
SHAKE algorithm context.
Definition: shake.h:53
uint8_t length
Definition: tcp.h:375
error_t shakeCompute(uint_t strength, const void *input, size_t inputLen, uint8_t *output, size_t outputLen)
Digest a message using SHAKE128 or SHAKE256.
Definition: shake.c:92
const XofAlgo shake256XofAlgo
Definition: shake.c:67
KeccakContext keccakContext
Definition: shake.h:54
error_t shake256Compute(const void *input, size_t inputLen, uint8_t *output, size_t outputLen)
Digest a message using SHAKE256.
Definition: shake.c:167
Common interface for XOF algorithms.
Definition: crypto.h:1146
Keccak sponge function.
const uint8_t SHAKE256_OID[9]
Definition: shake.c:50
void shakeAbsorb(ShakeContext *context, const void *input, size_t length)
Absorb data.
Definition: shake.c:237
void shakeSqueeze(ShakeContext *context, uint8_t *output, size_t length)
Extract data from the squeezing phase.
Definition: shake.c:263
error_t shake128Init(ShakeContext *context)
Initialize SHAKE128 context.
Definition: shake.c:210
unsigned int uint_t
Definition: compiler_port.h:57
error_t shake128Compute(const void *input, size_t inputLen, uint8_t *output, size_t outputLen)
Digest a message using SHAKE128.
Definition: shake.c:150