Lightweight Cryptography Primitives
 All Data Structures Files Functions Variables Typedefs Macros Pages
xoodyak-hkdf.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_HKDF_H
24 #define LWCRYPTO_XOODYAK_HKDF_H
25 
26 #include <stddef.h>
27 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
43 #define XOODYAK_HKDF_OUTPUT_SIZE 32
44 
48 typedef struct
49 {
51  unsigned char prk[XOODYAK_HKDF_OUTPUT_SIZE];
52 
54  unsigned char out[XOODYAK_HKDF_OUTPUT_SIZE];
55 
57  unsigned char counter;
58 
60  unsigned char posn;
61 
63 
81 int xoodyak_hkdf
82  (unsigned char *out, size_t outlen,
83  const unsigned char *key, size_t keylen,
84  const unsigned char *salt, size_t saltlen,
85  const unsigned char *info, size_t infolen);
86 
99  (xoodyak_hkdf_state_t *state,
100  const unsigned char *key, size_t keylen,
101  const unsigned char *salt, size_t saltlen);
102 
116  (xoodyak_hkdf_state_t *state,
117  const unsigned char *info, size_t infolen,
118  unsigned char *out, size_t outlen);
119 
126 
127 #ifdef __cplusplus
128 }
129 #endif
130 
131 #endif
#define XOODYAK_HKDF_OUTPUT_SIZE
Default output block size for Xoodyak-HKDF. Key material is generated in blocks of this size...
Definition: xoodyak-hkdf.h:43
int xoodyak_hkdf(unsigned char *out, size_t outlen, const unsigned char *key, size_t keylen, const unsigned char *salt, size_t saltlen, const unsigned char *info, size_t infolen)
Derives key material using Xoodyak-HKDF.
void xoodyak_hkdf_extract(xoodyak_hkdf_state_t *state, const unsigned char *key, size_t keylen, const unsigned char *salt, size_t saltlen)
Extracts entropy from a key and salt for Xoodyak-HKDF.
int xoodyak_hkdf_expand(xoodyak_hkdf_state_t *state, const unsigned char *info, size_t infolen, unsigned char *out, size_t outlen)
Expands key material using a Xoodyak-HKDF state.
void xoodyak_hkdf_free(xoodyak_hkdf_state_t *state)
Frees all sensitive material in a Xoodyak-HKDF state.
unsigned char counter
Definition: xoodyak-hkdf.h:57
State for incremental generation of key material from Xoodyak-HKDF.
Definition: xoodyak-hkdf.h:48
unsigned char posn
Definition: xoodyak-hkdf.h:60