artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32d9991
)
Tidy up includes
author
tb
<tb@openbsd.org>
Tue, 9 Jul 2024 16:31:40 +0000
(16:31 +0000)
committer
tb
<tb@openbsd.org>
Tue, 9 Jul 2024 16:31:40 +0000
(16:31 +0000)
lib/libcrypto/kdf/tls1_prf.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/kdf/tls1_prf.c
b/lib/libcrypto/kdf/tls1_prf.c
index
c0751b9
..
a015476
100644
(file)
--- a/
lib/libcrypto/kdf/tls1_prf.c
+++ b/
lib/libcrypto/kdf/tls1_prf.c
@@
-7,11
+7,15
@@
* https://www.openssl.org/source/license.html
*/
+#include <stdlib.h>
#include <stdio.h>
-#include "internal/cryptlib.h"
-#include <openssl/kdf.h>
+#include <string.h>
+
+#include <openssl/err.h>
#include <openssl/evp.h>
-#include "crypto/evp.h"
+#include <openssl/kdf.h>
+
+#include "evp_local.h"
static int tls1_prf_alg(const EVP_MD *md,
const unsigned char *sec, size_t slen,