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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
*
* Connection Manager
*
* Copyright (C) 2007-2012 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include "src/shared/sha1.h"
struct prf_data {
const char *key;
unsigned int key_len;
const char *prefix;
unsigned int prefix_len;
const char *data;
unsigned int data_len;
const char *prf;
};
static void prf_test(gconstpointer data)
{
const struct prf_data *test = data;
unsigned int prf_len;
unsigned char output[512];
char prf[128];
unsigned int i;
int result;
prf_len = strlen(test->prf) / 2;
if (g_test_verbose())
g_print("PRF = %s (%d octects)\n", test->prf, prf_len);
result = prf_sha1(test->key, test->key_len, test->prefix,
test->prefix_len, test->data, test->data_len,
output, prf_len);
g_assert(result == 0);
for (i = 0; i < prf_len; i++)
sprintf(prf + (i * 2), "%02x", output[i]);
if (g_test_verbose())
g_print("Result = %s\n", prf);
g_assert(strcmp(test->prf, prf) == 0);
}
static const struct prf_data test_case_1 = {
.key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
"\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
.key_len = 20,
.prefix = "prefix",
.prefix_len = 6,
.data = "Hi There",
.data_len = 8,
.prf = "bcd4c650b30b9684951829e0d75f9d54"
"b862175ed9f00606e17d8da35402ffee"
"75df78c3d31e0f889f012120c0862beb"
"67753e7439ae242edb8373698356cf5a",
};
static const struct prf_data test_case_2 = {
.key = "Jefe",
.key_len = 4,
.prefix = "prefix",
.prefix_len = 6,
.data = "what do ya want for nothing?",
.data_len = 28,
.prf = "51f4de5b33f249adf81aeb713a3c20f4"
"fe631446fabdfa58244759ae58ef9009"
"a99abf4eac2ca5fa87e692c440eb4002"
"3e7babb206d61de7b92f41529092b8fc",
};
static const struct prf_data test_case_3 = {
.key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
.key_len = 20,
.prefix = "prefix",
.prefix_len = 6,
.data = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
.data_len = 50,
.prf = "e1ac546ec4cb636f9976487be5c86be1"
"7a0252ca5d8d8df12cfb0473525249ce"
"9dd8d177ead710bc9b590547239107ae"
"f7b4abd43d87f0a68f1cbd9e2b6f7607",
};
int main(int argc, char *argv[])
{
g_test_init(&argc, &argv, NULL);
g_test_add_data_func("/prf-sha1/Test case 1",
&test_case_1, prf_test);
g_test_add_data_func("/prf-sha1/Test case 2",
&test_case_2, prf_test);
g_test_add_data_func("/prf-sha1/Test case 3",
&test_case_3, prf_test);
return g_test_run();
}
|