nrfxlib API 2.7.99
Loading...
Searching...
No Matches
ocrypto_hkdf_sha1.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 - 2024 Nordic Semiconductor ASA
3 * Copyright (c) since 2013 Oberon microsystems AG
4 *
5 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
6 */
7
8
9
27#ifndef OCRYPTO_HKDF_SHA1_H
28#define OCRYPTO_HKDF_SHA1_H
29
30#include <stddef.h>
31#include <stdint.h>
32
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38
56 uint8_t* r, size_t r_len,
57 const uint8_t* key, size_t key_len,
58 const uint8_t* salt, size_t salt_len,
59 const uint8_t* info, size_t info_len);
60
61#ifdef __cplusplus
62}
63#endif
64
65#endif
66
void ocrypto_hkdf_sha1(uint8_t *r, size_t r_len, const uint8_t *key, size_t key_len, const uint8_t *salt, size_t salt_len, const uint8_t *info, size_t info_len)