mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
27 lines
340 B
Perl
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,
|
|
},
|