<?php
require_once 'Crypt_Xtea/Xtea.php';

$matrix = new Crypt_Xtea;
$key1 ='0123456789987653221312312343210';

$result $matrix->encrypt ('hi there'$key1);
$nomore $matrix->decrypt ($result$key1);
print 
"hi there:<br /><br />encrypted:<br />" htmlentities($result) . "<br />\n";

print 
'<br/>decrypted:<br/>';
print 
$nomore;

?>