OPTIGA Trust M  1.1.0
C++ library for Optiga Trust M Chip Security Controller
hkdf.h
Go to the documentation of this file.
1 
9 /*
10  * Copyright (C) 2016-2018, ARM Limited, All Rights Reserved
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  * This file is part of mbed TLS (https://tls.mbed.org)
26  */
27 #ifndef MBEDTLS_HKDF_H
28 #define MBEDTLS_HKDF_H
29 
30 #include "md.h"
31 
36 #define MBEDTLS_ERR_HKDF_BAD_INPUT_DATA -0x5F80
37 /* \} name */
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
67 int mbedtls_hkdf( const mbedtls_md_info_t *md, const unsigned char *salt,
68  size_t salt_len, const unsigned char *ikm, size_t ikm_len,
69  const unsigned char *info, size_t info_len,
70  unsigned char *okm, size_t okm_len );
71 
97  const unsigned char *salt, size_t salt_len,
98  const unsigned char *ikm, size_t ikm_len,
99  unsigned char *prk );
100 
127 int mbedtls_hkdf_expand( const mbedtls_md_info_t *md, const unsigned char *prk,
128  size_t prk_len, const unsigned char *info,
129  size_t info_len, unsigned char *okm, size_t okm_len );
130 
131 #ifdef __cplusplus
132 }
133 #endif
134 
135 #endif /* hkdf.h */
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).
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.
This file contains the generic message-digest wrapper.
Definition: md_internal.h:47
#define md
Definition: compat-1.3.h:1982