ascon_cxof128.h
Go to the documentation of this file.
1 /**
2  * @file ascon_cxof128.h
3  * @brief Ascon-CXOF128 customizable 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_CXOF128_H
32 #define _ASCON_CXOF128_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-CXOF128 algorithm context
46  **/
47 
48 typedef struct
49 {
51  uint8_t buffer[8];
52  size_t length;
54 
55 
56 //Ascon-CXOF128 related functions
57 error_t asconCxof128Compute(const void *input, size_t inputLen,
58  const char_t *custom, size_t customLen, uint8_t *output, size_t outputLen);
59 
60 error_t asconCxof128Init(AsconCxof128Context *context, const char_t *custom,
61  size_t customLen);
62 
63 void asconCxof128Absorb(AsconCxof128Context *context, const void *input,
64  size_t length);
65 
67 
68 void asconCxof128Squeeze(AsconCxof128Context *context, uint8_t *output,
69  size_t length);
70 
71 //C++ guard
72 #ifdef __cplusplus
73 }
74 #endif
75 
76 #endif
Ascon state.
Definition: ascon.h:48
void asconCxof128Absorb(AsconCxof128Context *context, const void *input, size_t length)
Absorb data.
void asconCxof128Final(AsconCxof128Context *context)
Finish absorbing phase.
void asconCxof128Squeeze(AsconCxof128Context *context, uint8_t *output, size_t length)
Extract data from the squeezing phase.
error_t
Error codes.
Definition: error.h:43
Ascon-CXOF128 algorithm context.
Definition: ascon_cxof128.h:49
Ascon-Based lightweight cryptography.
General definitions for cryptographic algorithms.
uint8_t length
Definition: tcp.h:375
char char_t
Definition: compiler_port.h:55
error_t asconCxof128Compute(const void *input, size_t inputLen, const char_t *custom, size_t customLen, uint8_t *output, size_t outputLen)
Digest a message using Ascon-CXOF128.
Definition: ascon_cxof128.c:59
error_t asconCxof128Init(AsconCxof128Context *context, const char_t *custom, size_t customLen)
Initialize Ascon-CXOF128 context.