summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-05-05 07:57:33 +0000
committertb <>2022-05-05 07:57:33 +0000
commit959ee718b72478ae19ad40a2bd4e6846c7f341d2 (patch)
tree114d0b82ffac6a66036228d238abd56d73688bfb /src
parentaf79df884982f1ba5a4c3f90cd91eaaf4e35d0d3 (diff)
downloadopenbsd-959ee718b72478ae19ad40a2bd4e6846c7f341d2.tar.gz
openbsd-959ee718b72478ae19ad40a2bd4e6846c7f341d2.tar.bz2
openbsd-959ee718b72478ae19ad40a2bd4e6846c7f341d2.zip
Adjust includes for LibreSSL
ok beck jsing
Diffstat (limited to 'src')
-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