]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/ipcipher.hh
Merge pull request #8223 from PowerDNS/omoerbeek-patch-1
[thirdparty/pdns.git] / pdns / ipcipher.hh
CommitLineData
7d280342 1#pragma once
2#include "iputils.hh"
3#include <string>
4
5d5d8c2e 5// see https://powerdns.org/ipcipher
6
7d280342 7ComboAddress encryptCA(const ComboAddress& ca, const std::string& key);
8ComboAddress decryptCA(const ComboAddress& ca, const std::string& key);
5d5d8c2e 9std::string makeIPCipherKey(const std::string& password);