diff options
author | tb <> | 2022-05-05 07:57:33 +0000 |
---|---|---|
committer | tb <> | 2022-05-05 07:57:33 +0000 |
commit | 613aeb90a16a794ba4f6c27aad55d71333886c51 (patch) | |
tree | 114d0b82ffac6a66036228d238abd56d73688bfb /src | |
parent | f957cc830af2bd08f5fcace287ae5ebd52577ff0 (diff) | |
download | openbsd-613aeb90a16a794ba4f6c27aad55d71333886c51.tar.gz openbsd-613aeb90a16a794ba4f6c27aad55d71333886c51.tar.bz2 openbsd-613aeb90a16a794ba4f6c27aad55d71333886c51.zip |
Adjust includes for LibreSSL
ok beck jsing
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/kdf/hkdf_evp.c | 11 |
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 | ||