summaryrefslogtreecommitdiffstats
path: root/ipcipher.hh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
commit3cd01b932e1c85394272ae64fae67ebeda92fb00 (patch)
treec5a3115d710afc1879ddea5349362a2bc651733c /ipcipher.hh
parentInitial commit. (diff)
downloaddnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.tar.xz
dnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.zip
Adding upstream version 1.8.3.upstream/1.8.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--ipcipher.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/ipcipher.hh b/ipcipher.hh
new file mode 100644
index 0000000..ce944e6
--- /dev/null
+++ b/ipcipher.hh
@@ -0,0 +1,13 @@
+#pragma once
+#include "config.h"
+
+#include "iputils.hh"
+#include <string>
+
+// see https://powerdns.org/ipcipher
+
+#ifdef HAVE_IPCIPHER
+ComboAddress encryptCA(const ComboAddress& address, const std::string& key);
+ComboAddress decryptCA(const ComboAddress& address, const std::string& key);
+std::string makeIPCipherKey(const std::string& password);
+#endif /* HAVE_IPCIPHER */