summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-07-09 16:31:40 +0000
committertb <>2024-07-09 16:31:40 +0000
commit58f40ea614d57f49f263df24dde1233bb546859e (patch)
treeb951d73d61f9797f4709ab6e1e09a4c48e89d8e0 /src/lib
parent3a77c227560cdf9d31cc44216689a0873ea80cd9 (diff)
downloadopenbsd-58f40ea614d57f49f263df24dde1233bb546859e.tar.gz
openbsd-58f40ea614d57f49f263df24dde1233bb546859e.tar.bz2
openbsd-58f40ea614d57f49f263df24dde1233bb546859e.zip
Tidy up includes
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/kdf/tls1_prf.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/libcrypto/kdf/tls1_prf.c b/src/lib/libcrypto/kdf/tls1_prf.c
index c0751b9721..a015476c34 100644
--- a/src/lib/libcrypto/kdf/tls1_prf.c
+++ b/src/lib/libcrypto/kdf/tls1_prf.c
@@ -7,11 +7,15 @@
7 * https://www.openssl.org/source/license.html 7 * https://www.openssl.org/source/license.html
8 */ 8 */
9 9
10#include <stdlib.h>
10#include <stdio.h> 11#include <stdio.h>
11#include "internal/cryptlib.h" 12#include <string.h>
12#include <openssl/kdf.h> 13
14#include <openssl/err.h>
13#include <openssl/evp.h> 15#include <openssl/evp.h>
14#include "crypto/evp.h" 16#include <openssl/kdf.h>
17
18#include "evp_local.h"
15 19
16static int tls1_prf_alg(const EVP_MD *md, 20static int tls1_prf_alg(const EVP_MD *md,
17 const unsigned char *sec, size_t slen, 21 const unsigned char *sec, size_t slen,