mbed TLS v2.26.0
hkdf.h
Go to the documentation of this file.
1
9/*
10 * Copyright The Mbed TLS Contributors
11 * SPDX-License-Identifier: Apache-2.0
12 *
13 * Licensed under the Apache License, Version 2.0 (the "License"); you may
14 * not use this file except in compliance with the License.
15 * You may obtain a copy of the License at
16 *
17 * http://www.apache.org/licenses/LICENSE-2.0
18 *
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
24 */
25#ifndef MBEDTLS_HKDF_H
26#define MBEDTLS_HKDF_H
27
28#if !defined(MBEDTLS_CONFIG_FILE)
29#include "mbedtls/config.h"
30#else
31#include MBEDTLS_CONFIG_FILE
32#endif
33
34#include "mbedtls/md.h"
35
40#define MBEDTLS_ERR_HKDF_BAD_INPUT_DATA -0x5F80
41/* \} name */
42
43#ifdef __cplusplus
44extern "C" {
45#endif
46
71int mbedtls_hkdf( const mbedtls_md_info_t *md, const unsigned char *salt,
72 size_t salt_len, const unsigned char *ikm, size_t ikm_len,
73 const unsigned char *info, size_t info_len,
74 unsigned char *okm, size_t okm_len );
75
101 const unsigned char *salt, size_t salt_len,
102 const unsigned char *ikm, size_t ikm_len,
103 unsigned char *prk );
104
131int mbedtls_hkdf_expand( const mbedtls_md_info_t *md, const unsigned char *prk,
132 size_t prk_len, const unsigned char *info,
133 size_t info_len, unsigned char *okm, size_t okm_len );
134
135#ifdef __cplusplus
136}
137#endif
138
139#endif /* hkdf.h */
#define md
Definition: compat-1.3.h:1986
Configuration options (set of defines)
int mbedtls_hkdf_expand(const mbedtls_md_info_t *md, const unsigned char *prk, size_t prk_len, const unsigned char *info, size_t info_len, unsigned char *okm, size_t okm_len)
Expand the supplied prk into several additional pseudorandom keys, which is the output of the HKDF.
int mbedtls_hkdf_extract(const mbedtls_md_info_t *md, const unsigned char *salt, size_t salt_len, const unsigned char *ikm, size_t ikm_len, unsigned char *prk)
Take the input keying material ikm and extract from it a fixed-length pseudorandom key prk.
int mbedtls_hkdf(const mbedtls_md_info_t *md, const unsigned char *salt, size_t salt_len, const unsigned char *ikm, size_t ikm_len, const unsigned char *info, size_t info_len, unsigned char *okm, size_t okm_len)
This is the HMAC-based Extract-and-Expand Key Derivation Function (HKDF).
This file contains the generic message-digest wrapper.
struct mbedtls_md_info_t mbedtls_md_info_t
Definition: md.h:84