nrfxlib API 2.7.99
Loading...
Searching...
No Matches
ocrypto_hkdf_sha512.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
26#ifndef OCRYPTO_HKDF_SHA512_H
27#define OCRYPTO_HKDF_SHA512_H
28
29#include <stddef.h>
30#include <stdint.h>
31
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37
55 uint8_t* r, size_t r_len,
56 const uint8_t* key, size_t key_len,
57 const uint8_t* salt, size_t salt_len,
58 const uint8_t* info, size_t info_len);
59
60#ifdef __cplusplus
61}
62#endif
63
64#endif
65
void ocrypto_hkdf_sha512(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)