ascon_xof128.h
Go to the documentation of this file.
1 /**
2  * @file ascon_xof128.h
3  * @brief Ascon-XOF128 extendable-output function
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.0
29  **/
30 
31 #ifndef _ASCON_XOF128_H
32 #define _ASCON_XOF128_H
33 
34 //Dependencies
35 #include "core/crypto.h"
36 #include "lwc/ascon.h"
37 
38 //C++ guard
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
43 
44 /**
45  * @brief Ascon-XOF128 algorithm context
46  **/
47 
48 typedef struct
49 {
51  uint8_t buffer[8];
52  size_t length;
54 
55 //Ascon-XOF128 related functions
56 error_t asconXof128Compute(const void *input, size_t inputLen, uint8_t *output,
57  size_t outputLen);
58 
59 void asconXof128Init(AsconXof128Context *context);
60 
61 void asconXof128Absorb(AsconXof128Context *context, const void *input,
62  size_t length);
63 
65 
66 void asconXof128Squeeze(AsconXof128Context *context, uint8_t *output,
67  size_t length);
68 
69 //C++ guard
70 #ifdef __cplusplus
71 }
72 #endif
73 
74 #endif
void asconXof128Final(AsconXof128Context *context)
Finish absorbing phase.
Definition: ascon_xof128.c:179
void asconXof128Init(AsconXof128Context *context)
Initialize Ascon-XOF128 context.
Definition: ascon_xof128.c:105
Ascon-XOF128 algorithm context.
Definition: ascon_xof128.h:49
Ascon state.
Definition: ascon.h:48
error_t
Error codes.
Definition: error.h:43
Ascon-Based lightweight cryptography.
General definitions for cryptographic algorithms.
error_t asconXof128Compute(const void *input, size_t inputLen, uint8_t *output, size_t outputLen)
Digest a message using Ascon-XOF128.
Definition: ascon_xof128.c:57
uint8_t length
Definition: tcp.h:375
void asconXof128Absorb(AsconXof128Context *context, const void *input, size_t length)
Absorb data.
Definition: ascon_xof128.c:135
void asconXof128Squeeze(AsconXof128Context *context, uint8_t *output, size_t length)
Extract data from the squeezing phase.
Definition: ascon_xof128.c:218
AsconState state
Definition: ascon_xof128.h:50