Lightweight Cryptography Primitives
 All Data Structures Files Functions Variables Typedefs Macros Pages
xoodyak-kmac.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2021 Southern Storm Software, Pty Ltd.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included
12  * in all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef LWCRYPTO_XOODYAK_KMAC_H
24 #define LWCRYPTO_XOODYAK_KMAC_H
25 
26 #include "xoodyak-hash.h"
27 #include <stddef.h>
28 
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47 
51 #define XOODYAK_KMAC_SIZE XOODYAK_HASH_SIZE
52 
57 
73 void xoodyak_kmac
74  (const unsigned char *key, size_t keylen,
75  const unsigned char *in, size_t inlen,
76  const unsigned char *custom, size_t customlen,
77  unsigned char *out, size_t outlen);
78 
92  (xoodyak_kmac_state_t *state, const unsigned char *key, size_t keylen,
93  const unsigned char *custom, size_t customlen);
94 
105  (xoodyak_kmac_state_t *state, const unsigned char *in, size_t inlen);
106 
117  (xoodyak_kmac_state_t *state, size_t outlen);
118 
134  (xoodyak_kmac_state_t *state, unsigned char *out, size_t outlen);
135 
150  (xoodyak_kmac_state_t *state, unsigned char out[XOODYAK_KMAC_SIZE]);
151 
152 #ifdef __cplusplus
153 }
154 #endif
155 
156 #endif
#define XOODYAK_KMAC_SIZE
Default size of the output for Xoodyak-KMAC.
Definition: xoodyak-kmac.h:51
void xoodyak_kmac_init(xoodyak_kmac_state_t *state, const unsigned char *key, size_t keylen, const unsigned char *custom, size_t customlen)
Initializes an incremental KMAC state using the Xoodyak hash algorithm.
State information for Xoodyak incremental hashing modes.
Definition: xoodyak-hash.h:56
void xoodyak_kmac_set_output_length(xoodyak_kmac_state_t *state, size_t outlen)
Sets the desired output length for an incremental Xoodyak-KMAC state.
void xoodyak_kmac(const unsigned char *key, size_t keylen, const unsigned char *in, size_t inlen, const unsigned char *custom, size_t customlen, unsigned char *out, size_t outlen)
Computes a KMAC value using the Xoodyak hash algorithm.
void xoodyak_kmac_absorb(xoodyak_kmac_state_t *state, const unsigned char *in, size_t inlen)
Absorbs more input data into an incremental Xoodyak-KMAC state.
Xoodyak-Hash hash algorithm.
void xoodyak_kmac_squeeze(xoodyak_kmac_state_t *state, unsigned char *out, size_t outlen)
Squeezes output data from an incremental Xoodyak-KMAC state.
xoodyak_hash_state_t xoodyak_kmac_state_t
State information for the Xoodyak-KMAC incremental mode.
Definition: xoodyak-kmac.h:56
void xoodyak_kmac_finalize(xoodyak_kmac_state_t *state, unsigned char out[XOODYAK_KMAC_SIZE])
Squeezes fixed-length data from an incremental Xoodyak-KMAC state and finalizes the KMAC process...