blob: ce944e6622305cd68f27b3e8e370dc3162655413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 */
|