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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
/*
* This crypt(3) validation program shipped with UFC-crypt
* is derived from one distributed with Phil Karns PD DES package.
*
* @(#)cert.c 1.8 11 Aug 1996
*/
#include "crypt-port.h"
#include "crypt-obsolete.h"
#include "des-cases.h"
#include <stdio.h>
#if ENABLE_OBSOLETE_API_ENOSYS
#include <errno.h>
#endif
#if HAVE_SYMVER
symver_ref("encrypt", encrypt, SYMVER_FLOOR);
symver_ref("setkey", setkey, SYMVER_FLOOR);
#endif
static void
expand (unsigned char ex[64], const unsigned char pk[8])
{
int i, j;
unsigned int t;
for (i = 0; i < 8; i++)
{
t = pk[i];
for (j = 0; j < 8; j++)
ex[i*8 + j] = (unsigned char)((t & (0x01u << (7 - j))) != 0);
}
}
#if !ENABLE_OBSOLETE_API_ENOSYS
static void
ex_print (const unsigned char ex[64])
{
int i, j;
unsigned int t;
for (i = 0; i < 8; i++)
{
t = 0;
for (j = 0; j < 8; j++)
t = (t << 1) | ex[i*8 + j];
printf ("%02x", t);
}
}
static void
pk_print (const unsigned char pk[8])
{
for (int i = 0; i < 8; i++)
printf ("%02x", (unsigned int)pk[i]);
}
static void
report_failure (size_t n, bool decrypt,
const struct des_testcase *tc, const unsigned char got[64])
{
printf ("FAIL: %zu/%s: k=", n, decrypt ? "de" : "en");
pk_print (tc->key);
fputs (" exp ", stdout);
if (decrypt)
pk_print (tc->plain);
else
pk_print (tc->answer);
fputs (" got ", stdout);
ex_print (got);
putchar ('\n');
}
int
main (void)
{
unsigned char key[64], plain[64], cipher[64], answer[64];
const struct des_testcase *tc;
size_t t;
int status = 0;
for (t = 0; t < N_DES_TESTCASES; t++)
{
tc = &des_testcases[t];
expand (key, tc->key);
expand (plain, tc->plain);
expand (answer, tc->answer);
setkey ((char *)key);
memcpy (cipher, plain, 64);
encrypt ((char *)cipher, 0);
if (memcmp (cipher, answer, 64) != 0)
{
status = 1;
report_failure (t, false, tc, cipher);
}
memcpy (cipher, answer, 64);
encrypt ((char *)cipher, 1);
if (memcmp (cipher, plain, 64) != 0)
{
status = 1;
report_failure (t, true, tc, cipher);
}
}
return status;
}
#else
int
main (void)
{
unsigned char key[64], plain[64], cipher[64], answer[64];
const struct des_testcase *tc;
size_t t;
int status = 0;
for (t = 0; t < N_DES_TESTCASES; t++)
{
tc = &des_testcases[t];
expand (key, tc->key);
expand (plain, tc->plain);
expand (answer, tc->answer);
/* Explicitly reset errno as required by POSIX. */
errno = 0;
setkey ((char *)key);
if (errno != ENOSYS)
{
status = 1;
printf ("FAIL: %s: errno does NOT equal ENOSYS.\n"
"expected: %d, %s, got: %d, %s\n", "setkey",
ENOSYS, strerror (ENOSYS), errno, strerror (errno));
}
memcpy (cipher, plain, 64);
/* Explicitly reset errno as required by POSIX. */
errno = 0;
encrypt ((char *)cipher, 0);
if (memcmp (cipher, answer, 64) == 0)
{
status = 1;
printf ("FAIL: %s: still performs correct operation.\n",
"encrypt");
}
if (memcmp (cipher, plain, 64) == 0)
{
status = 1;
printf ("FAIL: %s: data-block is has not changed.\n",
"encrypt");
}
if (errno != ENOSYS)
{
status = 1;
printf ("FAIL: %s: errno does NOT equal ENOSYS.\n"
"expected: %d, %s, got: %d, %s\n", "encrypt",
ENOSYS, strerror (ENOSYS), errno, strerror (errno));
}
/* Explicitly reset errno as required by POSIX. */
errno = 0;
encrypt ((char *)cipher, 1);
if (memcmp (cipher, plain, 64) == 0)
{
status = 1;
printf ("FAIL: %s: still performs correct operation.\n",
"encrypt (decrypt)");
}
if (memcmp (cipher, answer, 64) == 0)
{
status = 1;
printf ("FAIL: %s: data-block is unchanged.\n",
"encrypt (decrypt)");
}
if (errno != ENOSYS)
{
status = 1;
printf ("FAIL: %s: errno does NOT equal ENOSYS.\n"
"expected: %d, %s, got: %d, %s\n", "encrypt (decrypt)",
ENOSYS, strerror (ENOSYS), errno, strerror (errno));
}
}
return status;
}
#endif
|