1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* Copyright (C) 2018 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <string.h>
#include <tap/basic.h>
#include "crypto.h"
#include "error.h"
#include "nsec.h"
static const dnssec_binary_t RDATA = { .size = 9, .data = (uint8_t []) {
0x01, // algorithm
0x00, // flags
0x00, 0x0a, // iterations
0x04, // salt length
'a', 'b', 'c', 'd' // salt
}};
static void test_length(void)
{
ok(dnssec_nsec3_hash_length(DNSSEC_NSEC3_ALGORITHM_SHA1) == 20,
"dnssec_nsec3_hash_length() for SHA1");
}
static void test_parsing(void)
{
dnssec_nsec3_params_t params = { 0 };
int result = dnssec_nsec3_params_from_rdata(¶ms, &RDATA);
ok(result == DNSSEC_EOK, "dnssec_nsec3_params_from_rdata()");
ok(params.algorithm == 1, "algorithm");
ok(params.flags == 0, "flags");
ok(params.iterations == 10, "iterations");
ok(params.salt.size == 4, "salt length");
ok(params.salt.data != NULL && memcmp(params.salt.data, "abcd", 4) == 0,
"salt content");
dnssec_nsec3_params_free(¶ms);
ok(params.salt.data == NULL, "dnssec_nsec3_params_free()");
}
static void test_hashing(void)
{
const dnssec_binary_t dname = {
.size = 13,
.data = (uint8_t *) "\x08""knot-dns""\x02""cz"
};
const dnssec_nsec3_params_t params = {
.algorithm = DNSSEC_NSEC3_ALGORITHM_SHA1,
.flags = 0,
.iterations = 7,
.salt = { .size = 14, .data = (uint8_t *) "happywithnsec3" }
};
const dnssec_binary_t expected = { .size = 20, .data = (uint8_t []) {
0x72, 0x40, 0x55, 0x83, 0x92, 0x93, 0x95, 0x28, 0xee, 0xa2,
0xcc, 0xe1, 0x13, 0xbe, 0xcd, 0x41, 0xee, 0x8a, 0x71, 0xfd
}};
dnssec_binary_t hash = { 0 };
int result = dnssec_nsec3_hash(&dname, ¶ms, &hash);
ok(result == DNSSEC_EOK, "dnssec_nsec3_hash()");
ok(hash.size == expected.size && hash.data != NULL &&
memcmp(hash.data, expected.data, expected.size) == 0,
"valid hash");
dnssec_binary_free(&hash);
}
static void test_clear(void)
{
const dnssec_nsec3_params_t empty = { 0 };
dnssec_nsec3_params_t params = { 0 };
int result = dnssec_nsec3_params_from_rdata(¶ms, &RDATA);
ok(result == DNSSEC_EOK, "dnssec_nsec3_params_from_rdata()");
ok(memcmp(¶ms, &empty, sizeof(dnssec_nsec3_params_t)) != 0,
"non-empty after dnssec_nsec3_params_from_rdata()");
dnssec_nsec3_params_free(¶ms);
ok(memcmp(¶ms, &empty, sizeof(dnssec_nsec3_params_t)) == 0,
"cleared after dnssec_nsec3_params_free()");
}
int main(void)
{
plan_lazy();
test_length();
test_parsing();
test_hashing();
test_clear();
return 0;
}
|