Imported Upstream version 2.5.11
[libapache-mod-security.git] / apache2 / t / tfn / sha1.t
1 ### Empty
2 {
3         type => "tfn",
4         name => "sha1",
5         input => "",
6         output => "\xda\x39\xa3\xee\x5e\x6b\x4b\x0d\x32\x55\xbf\xef\x95\x60\x18\x90\xaf\xd8\x07\x09",
7         ret => 1,
8 },
9
10 ### Basic
11 {
12         type => "tfn",
13         name => "sha1",
14         input => "TestCase",
15         output => "\xa7\x0c\xe3\x83\x89\xe3\x18\xbd\x2b\xe1\x8a\x01\x11\xc6\xdc\x76\xbd\x2c\xd9\xed",
16         ret => 1,
17 },
18
19 ### Binary w/NUL
20 {
21         type => "tfn",
22         name => "sha1",
23         input => "\x00\x01\x02\x03\x04\x05\x06\x07\x08",
24         output => "\x63\xbf\x60\xc7\x10\x5a\x07\xa2\xb1\x25\xbb\xf8\x9e\x61\xab\xda\xbc\x69\x78\xc2",
25         ret => 1,
26 },