/**
* simple method to encrypt or decrypt a plain text string
* initialization vector(IV) has to be the same when encrypting and decrypting
* PHP 5.4.9
*
* this is a beginners template for simple encryption decryption
* before using this in production environments, please read about encryption
*
* @param string $action: can be 'encrypt' or 'decrypt'
* @param string $string: string to encrypt or decrypt
*
* @return string
*/
function encrypt_decrypt($action, $string) {
$output = false;
$encrypt_method = "AES-256-CBC";
$secret_key = 'This is my secret key';
$secret_iv = 'This is my secret iv';
// hash
$key = hash('sha256', $secret_key);
// iv - encrypt method AES-256-CBC expects 16 bytes - else you will get a warning
$iv = substr(hash('sha256', $secret_iv), 0, 16);
if( $action == 'encrypt' ) {
$output = openssl_encrypt($string, $encrypt_method, $key, 0, $iv);
$output = base64_encode($output);
}
else if( $action == 'decrypt' ){
$output = openssl_decrypt(base64_decode($string), $encrypt_method, $key, 0, $iv);
}
return $output;
}
$plain_txt = "This is my plain text";
echo "Plain Text = $plain_txt\n";
$encrypted_txt = encrypt_decrypt('encrypt', $plain_txt);
echo "Encrypted Text = $encrypted_txt\n";
$decrypted_txt = encrypt_decrypt('decrypt', $encrypted_txt);
echo "Decrypted Text = $decrypted_txt\n";
if( $plain_txt === $decrypted_txt ) echo "SUCCESS";
else echo "FAILED";
echo "\n";
.
Thursday, 28 August 2014
Subscribe to:
Post Comments (Atom)
.
Popular Posts
-
You can follow these instructions if you need to manually perform a phpBB installation for your web site. Note that you should skip this s...
-
Conversion rates actually increase if you use other terminology for the button text. According to Hubspot , you can increase your convers...
-
Joomla is one of the most popular Content Management Systems (CMS) in the world, used in over 30 million sites, with over 200,000 communi...
-
Types of Encryption - Conventional Methods Encryption - Decryption: To carry sensitive information, such as military or financial data, a sy...
-
In this SMF introductory installation tutorial, we will demonstrate how to install the Simple Machine Forums (SMF) program manually. A man...
-
Simple Login logout system using php Login and logout system is the most important thing for the user management, session management is on...
-
Try Joomla 3 Now! We’ve partnered with Siteground to provide a 90-day free Joomla! demo account . Get an instant Joomla website today! Try ...
-
CSS3 Animations With CSS3, we can create animations, which can replace animated images, Flash animations, and JavaScripts in many web pages....
-
As a PHP developer, we often get bored with one PHP framework and looks for some advanced feature rich framework which can make life easie...
-
WEBDEC Technologies The penetration of web and digital media into every aspect of people’s lives has caused fundamental changes in how peo...
Powered by Blogger.
0 comments:
Post a Comment