mirror of
https://github.com/Lurkars/esp-ena.git
synced 2024-11-22 10:06:11 +01:00
17 lines
321 B
C
17 lines
321 B
C
|
/**
|
||
|
* \def MBEDTLS_HKDF_C
|
||
|
*
|
||
|
* Disable the HKDF algorithm (RFC 5869).
|
||
|
*
|
||
|
* Module: library/hkdf.c
|
||
|
* Caller:
|
||
|
*
|
||
|
* Requires: MBEDTLS_MD_C
|
||
|
*
|
||
|
* This module adds support for the Hashed Message Authentication Code
|
||
|
* (HMAC)-based key derivation function (HKDF).
|
||
|
*/
|
||
|
#ifndef MBEDTLS_HKDF_C
|
||
|
#define MBEDTLS_HKDF_C
|
||
|
#endif
|