summaryrefslogtreecommitdiffstats
path: root/src/lib/cryptolink
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2024-01-29 17:00:41 +0100
committerThomas Markwalder <tmark@isc.org>2024-02-07 14:58:47 +0100
commitb75e0f4c5091bd5dc624085bc6c9fe54246e184a (patch)
treed2eb3699dcb48aacd6002a1c976ec3304a2acd14 /src/lib/cryptolink
parent[#2022] Added PARK status handle (diff)
downloadkea-b75e0f4c5091bd5dc624085bc6c9fe54246e184a.tar.xz
kea-b75e0f4c5091bd5dc624085bc6c9fe54246e184a.zip
[#3209] Initial commit
Rewrote encoding/decoding. src/lib/util/Makefile.am Removed old files, added encode.cc, encode.h src/lib/util/encode/encode.* New implemenentation encoding and decoding not based on boost.
Diffstat (limited to 'src/lib/cryptolink')
-rw-r--r--src/lib/cryptolink/tests/crypto_unittests.cc2
-rw-r--r--src/lib/cryptolink/tests/hash_unittests.cc2
-rw-r--r--src/lib/cryptolink/tests/hmac_unittests.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/cryptolink/tests/crypto_unittests.cc b/src/lib/cryptolink/tests/crypto_unittests.cc
index 9edb52d4a6..54c5c9af63 100644
--- a/src/lib/cryptolink/tests/crypto_unittests.cc
+++ b/src/lib/cryptolink/tests/crypto_unittests.cc
@@ -8,7 +8,7 @@
#include <gtest/gtest.h>
-#include <util/encode/hex.h>
+#include <util/encode/encode.h>
#include <cryptolink/cryptolink.h>
#include <cryptolink/crypto_rng.h>
diff --git a/src/lib/cryptolink/tests/hash_unittests.cc b/src/lib/cryptolink/tests/hash_unittests.cc
index d2e93968cf..0500c35107 100644
--- a/src/lib/cryptolink/tests/hash_unittests.cc
+++ b/src/lib/cryptolink/tests/hash_unittests.cc
@@ -13,7 +13,7 @@
#include <gtest/gtest.h>
-#include <util/encode/hex.h>
+#include <util/encode/encode.h>
#include <cryptolink/cryptolink.h>
#include <cryptolink/crypto_hash.h>
diff --git a/src/lib/cryptolink/tests/hmac_unittests.cc b/src/lib/cryptolink/tests/hmac_unittests.cc
index d0c5cd9b45..0fabf92640 100644
--- a/src/lib/cryptolink/tests/hmac_unittests.cc
+++ b/src/lib/cryptolink/tests/hmac_unittests.cc
@@ -13,7 +13,7 @@
#include <gtest/gtest.h>
-#include <util/encode/hex.h>
+#include <util/encode/encode.h>
#include <cryptolink/cryptolink.h>
#include <cryptolink/crypto_hmac.h>