<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
============================================
FileName : Example.php
Author : Hatem Mohamed (http://www.itmideast.com)
Mail : developer-php@hotmail.com
Country : Egypt
Class Name : Encryption With PHP Mcrypt
Date : May 2010
============================================
*/
// a new proCrypt instance
$crypt = new proCrypt;
// encrypt the string
$encoded = $crypt->encrypt( 'my message');
echo $encoded."\n";
// decrypt the string
echo $crypt->decrypt( $encoded ) . "\n";
?>
|