16dc43d600745ba4623e76c28fa93dd983f25e38
[libapache-mod-security.git] / hexEncode.t
1 ### Empty
2 {
3         type => "tfn",
4         name => "hexEncode",
5         input => "",
6         output => "",
7         ret => 1,
8 },
9
10 ### Basic
11 {
12         type => "tfn",
13         name => "hexEncode",
14         input => "TestCase",
15         output => "5465737443617365",
16         ret => 1,
17 },
18
19 ### Basic w/NULL
20 {
21         type => "tfn",
22         name => "hexEncode",
23         input => "Test\0Case",
24         output => "546573740043617365",
25         ret => 1,
26 },