forked from besser82/libxcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-crypt-sha512.c
83 lines (72 loc) · 2 KB
/
test-crypt-sha512.c
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
#include "crypt-port.h"
#include "crypt-base.h"
#include <stdio.h>
#if INCLUDE_sha512
static const struct
{
const char *salt;
const char *input;
const char *expected;
} tests[] =
{
{
"$6$saltstring", "Hello world!",
"$6$saltstring$svn8UoSVapNtMuq1ukKS4tPQd8iKwSMHWjl/O817G3uBnIFNjnQJu"
"esI68u4OTLiBFdcbYEdFCoEOfaS35inz1"
},
/* explicit specification of rounds=5000 should be allowed and preserved */
{
"$6$rounds=5000$saltstring", "Hello world!",
"$6$rounds=5000$saltstring$svn8UoSVapNtMuq1ukKS4tPQd8iKwSMHWjl/O817G3"
"uBnIFNjnQJuesI68u4OTLiBFdcbYEdFCoEOfaS35inz1"
},
{
"$6$rounds=10000$saltstringsaltstring", "Hello world!",
"$6$rounds=10000$saltstringsaltst$OW1/O6BYHV6BcXZu8QVeXbDWra3Oeqh0sb"
"HbbMCVNSnCM/UrjmM0Dp8vOuZeHBy/YTBmSK6H9qs/y3RnOaw5v."
},
{
"$6$rounds=1400$anotherlongsaltstring",
"a very much longer text to encrypt. This one even stretches over more"
"than one line.",
"$6$rounds=1400$anotherlongsalts$POfYwTEok97VWcjxIiSOjiykti.o/pQs.wP"
"vMxQ6Fm7I6IoYN3CmLs66x9t0oSwbtEW7o7UmJEiDwGqd8p4ur1"
},
{
"$6$rounds=77777$short",
"we have a short salt string but not a short password",
"$6$rounds=77777$short$WuQyW2YR.hBNpjjRhpYD/ifIw05xdfeEyQoMxIXbkvr0g"
"ge1a1x3yRULJ5CCaUeOxFmtlcGZelFl5CxtgfiAc0"
},
{
"$6$rounds=123456$asaltof16chars..", "a short string",
"$6$rounds=123456$asaltof16chars..$BtCwjqMJGx5hrJhZywWvt0RLE8uZ4oPwc"
"elCjmw2kSYu.Ec6ycULevoBK25fs2xXgMNrCzIMVcgEJAstJeonj1"
},
};
#define ntests ARRAY_SIZE (tests)
int
main (void)
{
struct crypt_data output;
int result = 0;
size_t i;
for (i = 0; i < ntests; ++i)
{
char *cp = crypt_r (tests[i].input, tests[i].salt, &output);
if (strcmp (cp, tests[i].expected) != 0)
{
printf ("test %u: expected \"%s\", got \"%s\"\n",
(unsigned int) i, tests[i].expected, cp);
result = 1;
}
}
return result;
}
#else
int
main (void)
{
return 77; /* UNSUPPORTED */
}
#endif