Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php // Ioncube Decoder Unzend.Com Email [email protected] function XTEA() { ..

Decoded Output download

<?php  
// Ioncube Decoder Unzend.Com Email [email protected] 
 
 
function XTEA() 
{ 
    $xtea = new XTEA(""); 
    $vectors = array( array( array( 0, 0, 0, 0 ), array( 1094795585, 1094795585 ), array( 3978508122, 2182777901 ) ), array( array( 66051, 67438087, 134810123, 202182159 ), array( 1094861636, 1162233672 ), array( 1232991184, 1918971061 ) ) ); 
    $correct = true; 
    foreach( $vectors as $vector )  
    { 
        $xtea->key_setup($key); 
        if( (int) $return[0] != (int) $cipher[0] || (int) $return[1] != (int) $cipher[1] )  
        { 
            $correct = false; 
        } 
 
    } 
    return $correct; 
} 
 
 
?>

Did this file decode correctly?

Original Code

<?php 
// Ioncube Decoder Unzend.Com Email [email protected]


function XTEA()
{
    $xtea = new XTEA("");
    $vectors = array( array( array( 0, 0, 0, 0 ), array( 1094795585, 1094795585 ), array( 3978508122, 2182777901 ) ), array( array( 66051, 67438087, 134810123, 202182159 ), array( 1094861636, 1162233672 ), array( 1232991184, 1918971061 ) ) );
    $correct = true;
    foreach( $vectors as $vector ) 
    {
        $xtea->key_setup($key);
        if( (int) $return[0] != (int) $cipher[0] || (int) $return[1] != (int) $cipher[1] ) 
        {
            $correct = false;
        }

    }
    return $correct;
}


?>

Function Calls

None

Variables

None

Stats

MD5 b468f3a38f32502ea446d4cda09018cf
Eval Count 0
Decode Time 87 ms