summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/kdf/hkdf_evp.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/libcrypto/kdf/hkdf_evp.c b/src/lib/libcrypto/kdf/hkdf_evp.c
index a258cb7ec9..d87664d204 100644
--- a/src/lib/libcrypto/kdf/hkdf_evp.c
+++ b/src/lib/libcrypto/kdf/hkdf_evp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: hkdf_evp.c,v 1.8 2022/05/05 07:53:30 tb Exp $ */ 1/* $OpenBSD: hkdf_evp.c,v 1.9 2022/05/05 07:57:33 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2016-2018 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2016-2018 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -49,11 +49,14 @@
49 49
50#include <stdlib.h> 50#include <stdlib.h>
51#include <string.h> 51#include <string.h>
52
53#include <openssl/err.h>
54#include <openssl/evp.h>
52#include <openssl/hmac.h> 55#include <openssl/hmac.h>
56#include <openssl/hkdf.h>
53#include <openssl/kdf.h> 57#include <openssl/kdf.h>
54#include <openssl/evp.h> 58
55#include "internal/cryptlib.h" 59#include "evp_locl.h"
56#include "crypto/evp.h"
57 60
58#define HKDF_MAXBUF 1024 61#define HKDF_MAXBUF 1024
59 62