Lightweight Cryptography Primitives
 All Data Structures Files Functions Variables Typedefs Macros Pages
romulus-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_ROMULUS_HKDF_H
24 #define LWCRYPTO_ROMULUS_HKDF_H
25 
26 #include <stddef.h>
27 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
43 #define ROMULUS_HKDF_OUTPUT_SIZE 32
44 
48 typedef struct
49 {
51  unsigned char prk[ROMULUS_HKDF_OUTPUT_SIZE];
52 
54  unsigned char out[ROMULUS_HKDF_OUTPUT_SIZE];
55 
57  unsigned char counter;
58 
60  unsigned char posn;
61 
63 
81 int romulus_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  (romulus_hkdf_state_t *state,
100  const unsigned char *key, size_t keylen,
101  const unsigned char *salt, size_t saltlen);
102 
116  (romulus_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
void romulus_hkdf_extract(romulus_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 Romulus-HKDF.
unsigned char posn
Definition: romulus-hkdf.h:60
int romulus_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 Romulus-HKDF.
int romulus_hkdf_expand(romulus_hkdf_state_t *state, const unsigned char *info, size_t infolen, unsigned char *out, size_t outlen)
Expands key material using a Romulus-HKDF state.
#define ROMULUS_HKDF_OUTPUT_SIZE
Default output block size for Romulus-HKDF. Key material is generated in blocks of this size...
Definition: romulus-hkdf.h:43
void romulus_hkdf_free(romulus_hkdf_state_t *state)
Frees all sensitive material in a Romulus-HKDF state.
State for incremental generation of key material from Romulus-HKDF.
Definition: romulus-hkdf.h:48
unsigned char counter
Definition: romulus-hkdf.h:57