Files
ModSecurity/2.5.13/2.5.x/apache2/t/tfn/hexEncode.t
brenosilva 47c791938f
2011-01-06 19:18:48 +00:00

27 lines
340 B
Perl

### Empty
{
type => "tfn",
name => "hexEncode",
input => "",
output => "",
ret => 1,
},
### Basic
{
type => "tfn",
name => "hexEncode",
input => "TestCase",
output => "5465737443617365",
ret => 1,
},
### Basic w/NULL
{
type => "tfn",
name => "hexEncode",
input => "Test\0Case",
output => "546573740043617365",
ret => 1,
},