]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/tsigutils.cc
Merge pull request #7909 from qvr/expungebyname-stats
[thirdparty/pdns.git] / pdns / tsigutils.cc
CommitLineData
ac5298aa
PL
1/*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23#include "dnsname.hh"
24#include "base64.hh"
25#include "dns_random.hh"
26#include "misc.hh"
27#include "pdnsexception.hh"
28#include <string>
29
30/*
31 * Returns a generated Base64'd TSIG key
32 *
33 * Will raise a PDNSException() if algorithm is invalid
34 */
35std::string makeTSIGKey(const DNSName& algorithm) {
36 TSIGHashEnum tsigHashEnum;
37 if (!getTSIGHashEnum(algorithm, tsigHashEnum)) {
38 throw PDNSException("Invalid TSIG algorithm: " + algorithm.toStringNoDot());
39 }
40
41 size_t klen = 64;
42 if (tsigHashEnum == TSIG_MD5
43 || tsigHashEnum == TSIG_SHA1
44 || tsigHashEnum == TSIG_SHA224) {
45 klen = 32;
46 }
47
a49c8752
PL
48 string tmpkey;
49 tmpkey.resize(klen);
50
17a1a693
PL
51 // Fill out the key
52 for (size_t i = 0; i < klen; i += sizeof(uint32_t)) {
53 uint32_t t = dns_random(std::numeric_limits<uint32_t>::max());
54 memcpy(&tmpkey.at(i), &t, sizeof(uint32_t));
ac5298aa 55 }
17a1a693 56
a49c8752 57 return Base64Encode(tmpkey);
ac5298aa 58}