Leancrypto 0.12.0
Post-Quantum Cryptographic Library
Loading...
Searching...
No Matches
lc_kdf_fb.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 - 2024, 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_KDF_FB_H
21#define LC_KDF_FB_H
22
23#include "ext_headers.h"
24#include "lc_hash.h"
25#include "lc_hmac.h"
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
46int lc_kdf_fb_init(struct lc_hmac_ctx *hmac_ctx, const uint8_t *key,
47 size_t keylen);
48
68int lc_kdf_fb_generate(struct lc_hmac_ctx *hmac_ctx, const uint8_t *iv,
69 size_t ivlen, const uint8_t *label, size_t labellen,
70 uint8_t *dst, size_t dlen);
71
91int lc_kdf_fb(const struct lc_hash *hash, const uint8_t *key, size_t keylen,
92 const uint8_t *iv, size_t ivlen, const uint8_t *label,
93 size_t labellen, uint8_t *dst, size_t dlen);
94
95#ifdef __cplusplus
96}
97#endif
98
99#endif /* LC_KDF_FB_H */
void lc_hash(const struct lc_hash *hash, const uint8_t *in, size_t inlen, uint8_t *digest)
Calculate message digest - one-shot.
int lc_kdf_fb_init(struct lc_hmac_ctx *hmac_ctx, const uint8_t *key, size_t keylen)
Key-based Key Derivation in Feedback Mode - SP800-108 - initialization.
int lc_kdf_fb(const struct lc_hash *hash, const uint8_t *key, size_t keylen, const uint8_t *iv, size_t ivlen, const uint8_t *label, size_t labellen, uint8_t *dst, size_t dlen)
One-shot Key-based Key Derivation in Feedback Mode - SP800-108.
int lc_kdf_fb_generate(struct lc_hmac_ctx *hmac_ctx, const uint8_t *iv, size_t ivlen, const uint8_t *label, size_t labellen, uint8_t *dst, size_t dlen)
Key-based Key Derivation in Feedback Mode - SP800-108 - data generation.