summaryrefslogtreecommitdiffstats
path: root/ipcipher.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ipcipher.hh')
-rw-r--r--ipcipher.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/ipcipher.hh b/ipcipher.hh
new file mode 100644
index 0000000..cbb932d
--- /dev/null
+++ b/ipcipher.hh
@@ -0,0 +1,9 @@
+#pragma once
+#include "iputils.hh"
+#include <string>
+
+// see https://powerdns.org/ipcipher
+
+ComboAddress encryptCA(const ComboAddress& ca, const std::string& key);
+ComboAddress decryptCA(const ComboAddress& ca, const std::string& key);
+std::string makeIPCipherKey(const std::string& password);