---
unit/test-pbkdf2.c | 6 +++---
unit/test-tls.c | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/unit/test-pbkdf2.c b/unit/test-pbkdf2.c
index 37d87ed..3f272ce 100644
--- a/unit/test-pbkdf2.c
+++ b/unit/test-pbkdf2.c
@@ -51,9 +51,9 @@ static void pbkdf2_test(const void *data)
key_len = test->key_len ? : (strlen(test->key) / 2);
- result = l_pkcs5_pbkdf2(L_CHECKSUM_SHA1, test->password,
- (const uint8_t *) test->salt, salt_len,
- test->count, output, key_len);
+ result = l_cert_pkcs5_pbkdf2(L_CHECKSUM_SHA1, test->password,
+ (const uint8_t *) test->salt, salt_len,
+ test->count, output, key_len);
assert(result == true);
diff --git a/unit/test-tls.c b/unit/test-tls.c
index 9503f6b..7937962 100644
--- a/unit/test-tls.c
+++ b/unit/test-tls.c
@@ -31,6 +31,7 @@
#include <ell/ell.h>
#include "ell/tls-private.h"
+#include "ell/asn1-private.h"
#include "ell/cert-private.h"
static void test_tls10_prf(const void *data)
--
2.27.0