diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/kdf/tls1_prf.c | 10 |
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 | ||
16 | static int tls1_prf_alg(const EVP_MD *md, | 20 | static int tls1_prf_alg(const EVP_MD *md, |
17 | const unsigned char *sec, size_t slen, | 21 | const unsigned char *sec, size_t slen, |