Leancrypto 1.6.0
Post-Quantum Cryptographic Library
Loading...
Searching...
No Matches
lc_hkdf.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 - 2025, Stephan Mueller <smueller@chronox.de>
3 *
4 * License: see LICENSE file in root directory
5 *
6 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
7 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
8 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
9 * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
10 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
11 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
12 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
13 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
14 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
15 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
16 * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
17 * DAMAGE.
18 */
19
20#ifndef LC_HKDF_H
21#define LC_HKDF_H
22
23#include "ext_headers.h"
24#include "lc_hmac.h"
25#include "lc_rng.h"
26#include "lc_memset_secure.h"
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
33struct lc_hkdf_ctx {
34 uint8_t partial[LC_SHA_MAX_SIZE_DIGEST];
35 size_t partial_ptr;
36 uint8_t ctr;
37 uint8_t rng_initialized : 1;
38 struct lc_hmac_ctx hmac_ctx;
39};
40
41#define LC_HKDF_STATE_SIZE(hashname) (LC_HMAC_CTX_SIZE(hashname))
42#define LC_HKDF_CTX_SIZE(hashname) \
43 (sizeof(struct lc_hkdf_ctx) + LC_HKDF_STATE_SIZE(hashname))
44
45#define _LC_HKDF_SET_CTX(name, hashname, ctx, offset) \
46 _LC_HMAC_SET_CTX((&(name)->hmac_ctx), hashname, ctx, offset)
47
48#define LC_HKDF_SET_CTX(name, hashname) \
49 _LC_HKDF_SET_CTX(name, hashname, name, sizeof(struct lc_hkdf_ctx))
51
73int lc_hkdf_extract(struct lc_hkdf_ctx *hkdf_ctx, const uint8_t *ikm,
74 size_t ikmlen, const uint8_t *salt, size_t saltlen);
75
92int lc_hkdf_expand(struct lc_hkdf_ctx *hkdf_ctx, const uint8_t *info,
93 size_t infolen, uint8_t *dst, size_t dlen);
94
102void lc_hkdf_zero(struct lc_hkdf_ctx *hkdf_ctx);
103
114int lc_hkdf_alloc(const struct lc_hash *hash, struct lc_hkdf_ctx **hkdf_ctx);
115
122void lc_hkdf_zero_free(struct lc_hkdf_ctx *hkdf_ctx);
123
131#define LC_HKDF_CTX_ON_STACK(name, hashname) \
132 _Pragma("GCC diagnostic push") \
133 _Pragma("GCC diagnostic ignored \"-Wvla\"") _Pragma( \
134 "GCC diagnostic ignored \"-Wdeclaration-after-statement\"") \
135 LC_ALIGNED_BUFFER(name##_ctx_buf, \
136 LC_HKDF_CTX_SIZE(hashname), \
137 LC_HASH_COMMON_ALIGNMENT); \
138 struct lc_hkdf_ctx *name = (struct lc_hkdf_ctx *)name##_ctx_buf; \
139 LC_HKDF_SET_CTX(name, hashname); \
140 lc_hkdf_zero(name); \
141 _Pragma("GCC diagnostic pop")
142
162int lc_hkdf(const struct lc_hash *hash, const uint8_t *ikm, size_t ikmlen,
163 const uint8_t *salt, size_t saltlen, const uint8_t *info,
164 size_t infolen, uint8_t *dst, size_t dlen);
165
166/******************************** HKDF as RNG *********************************/
167
176
177/* HKDF DRNG implementation */
178extern const struct lc_rng *lc_hkdf_rng;
179
181#define LC_HKDF_DRNG_CTX_SIZE(hashname) \
182 (sizeof(struct lc_rng_ctx) + LC_HKDF_CTX_SIZE(hashname))
183
184#define LC_HKDF_DRNG_SET_CTX(name, hashname) LC_HKDF_SET_CTX(name, hashname)
185
186#define LC_HKDF_RNG_CTX(name, hashname) \
187 LC_RNG_CTX(name, lc_hkdf_rng); \
188 LC_HKDF_DRNG_SET_CTX(((struct lc_hkdf_ctx *)(name->rng_state)), \
189 hashname); \
190 lc_rng_zero(name)
192
202#define LC_HKDF_DRNG_CTX_ON_STACK(name, hashname) \
203 _Pragma("GCC diagnostic push") \
204 _Pragma("GCC diagnostic ignored \"-Wvla\"") _Pragma( \
205 "GCC diagnostic ignored \"-Wdeclaration-after-statement\"") \
206 LC_ALIGNED_BUFFER(name##_ctx_buf, \
207 LC_HKDF_DRNG_CTX_SIZE(hashname), \
208 LC_HASH_COMMON_ALIGNMENT); \
209 struct lc_rng_ctx *name = (struct lc_rng_ctx *)name##_ctx_buf; \
210 LC_HKDF_RNG_CTX(name, hashname); \
211 _Pragma("GCC diagnostic pop")
212
228int lc_hkdf_rng_alloc(struct lc_rng_ctx **state, const struct lc_hash *hash);
229
230#ifdef __cplusplus
231}
232#endif
233
234#endif /* LC_HKDF_H */
int lc_hash(const struct lc_hash *hash, const uint8_t *in, size_t inlen, uint8_t *digest)
Calculate message digest - one-shot.
int lc_hkdf_expand(struct lc_hkdf_ctx *hkdf_ctx, const uint8_t *info, size_t infolen, uint8_t *dst, size_t dlen)
HMAC-based Extract-and-Expand Key Derivation Function (HKDF) - RFC5869 Expand phase.
int lc_hkdf(const struct lc_hash *hash, const uint8_t *ikm, size_t ikmlen, const uint8_t *salt, size_t saltlen, const uint8_t *info, size_t infolen, uint8_t *dst, size_t dlen)
HMAC-based Extract-and-Expand Key Derivation Function (HKDF) - RFC5869 Complete implementation.
void lc_hkdf_zero_free(struct lc_hkdf_ctx *hkdf_ctx)
Zeroize and free HKDF context.
int lc_hkdf_alloc(const struct lc_hash *hash, struct lc_hkdf_ctx **hkdf_ctx)
Allocate HKDF context on heap.
void lc_hkdf_zero(struct lc_hkdf_ctx *hkdf_ctx)
Zeroize HKDF context allocated with either LC_HKDF_CTX_ON_STACK or hkdf_alloc.
int lc_hkdf_extract(struct lc_hkdf_ctx *hkdf_ctx, const uint8_t *ikm, size_t ikmlen, const uint8_t *salt, size_t saltlen)
HMAC-based Extract-and-Expand Key Derivation Function (HKDF) - RFC5869 Extract phase.
int lc_hkdf_rng_alloc(struct lc_rng_ctx **state, const struct lc_hash *hash)
Allocation of a HKDF DRNG context.
const struct lc_rng * lc_hkdf_rng