summaryrefslogtreecommitdiffstats
path: root/src/crypto/hkdf
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/hkdf')
-rw-r--r--src/crypto/hkdf/CMakeLists.txt2
-rw-r--r--src/crypto/hkdf/hkdf.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/hkdf/CMakeLists.txt b/src/crypto/hkdf/CMakeLists.txt
index 66d680a..53bf558 100644
--- a/src/crypto/hkdf/CMakeLists.txt
+++ b/src/crypto/hkdf/CMakeLists.txt
@@ -1,4 +1,4 @@
-include_directories(. .. ../../include)
+include_directories(../../include)
add_library(
hkdf
diff --git a/src/crypto/hkdf/hkdf.c b/src/crypto/hkdf/hkdf.c
index bb7f5a4..f9cdcb0 100644
--- a/src/crypto/hkdf/hkdf.c
+++ b/src/crypto/hkdf/hkdf.c
@@ -40,7 +40,7 @@ int HKDF(uint8_t *out_key, size_t out_len,
/* Expand key material to desired length. */
n = (out_len + digest_len - 1) / digest_len;
if (out_len + digest_len < out_len || n > 255) {
- OPENSSL_PUT_ERROR(HKDF, HKDF, HKDF_R_OUTPUT_TOO_LARGE);
+ OPENSSL_PUT_ERROR(HKDF, HKDF_R_OUTPUT_TOO_LARGE);
return 0;
}
@@ -83,7 +83,7 @@ int HKDF(uint8_t *out_key, size_t out_len,
out:
HMAC_CTX_cleanup(&hmac);
if (ret != 1) {
- OPENSSL_PUT_ERROR(HKDF, HKDF, ERR_R_HMAC_LIB);
+ OPENSSL_PUT_ERROR(HKDF, ERR_R_HMAC_LIB);
}
return ret;
}