<HTML>
<HEAD>
<TITLE>decrypt</TITLE>
</HEAD>
<BODY>
<?
dl("crypt.dll");
$message = "this is a plain text message";
$password = "secret";
$data = encrypt($message, 0, $password);
print(decrypt($data, 0, $password));
?>
</BODY>
</HTML>
<HEAD>
<TITLE>decrypt</TITLE>
</HEAD>
<BODY>
<?
dl("crypt.dll");
$message = "this is a plain text message";
$password = "secret";
$data = encrypt($message, 0, $password);
print(decrypt($data, 0, $password));
?>
</BODY>
</HTML>