Welcome to W3Courses

Mcrypt

Encrypt Decrypt using the Rijndael 256 Mcrypt Function in PHP

You can encrypt and decrypt data using the Mcrypt function below:

<?

$mykey = "THISisMyKey";

5
Average: 5 (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";

0