Mcrypt
Encrypt Decrypt using the Rijndael 256 Mcrypt Function in PHP
You can encrypt and decrypt data using the Mcrypt function below:
<?
$mykey = "THISisMyKey";
(1 vote)
Encrypt Decrypt using the Rijndael 256 Mcrypt Class in PHP
You can encrypt and decrypt data using the following Mcrypt class:
<?
class pWord
{
var $mykey = "THISisMyKey";
