]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/ipcipher.hh
Merge pull request #11431 from jroessler-ox/docs-kskzskroll-update
[thirdparty/pdns.git] / pdns / ipcipher.hh
1 #pragma once
2 #include "config.h"
3
4 #include "iputils.hh"
5 #include <string>
6
7 // see https://powerdns.org/ipcipher
8
9 #ifdef HAVE_IPCIPHER
10 ComboAddress encryptCA(const ComboAddress& address, const std::string& key);
11 ComboAddress decryptCA(const ComboAddress& address, const std::string& key);
12 std::string makeIPCipherKey(const std::string& password);
13 #endif /* HAVE_IPCIPHER */