Base64 encryption decrypts a piece of PHP encryption and decryption code

Source: Internet
Author: User
$key = "This was supposed to be a secret key!!!";
function KeyED ($txt, $encrypt _key)
{
$encrypt _key = MD5 ($encrypt _key);
$ctr = 0;
$tmp = "";
for ($i =0; $i {
if ($ctr ==strlen ($encrypt _key)) $ctr = 0;
$tmp. = substr ($txt, $i, 1) ^ substr ($encrypt _key, $ctr, 1);
$ctr + +;
}
return $tmp;
}
function Encrypt ($txt, $key)
{
Srand (Double) microtime () *1000000);
$encrypt _key = MD5 (rand (0,32000));
$ctr = 0;
$tmp = "";
for ($i =0; $i {
if ($ctr ==strlen ($encrypt _key)) $ctr = 0;
$tmp. = substr ($encrypt _key, $ctr, 1).
(Substr ($txt, $i, 1) ^ substr ($encrypt _key, $ctr, 1));
$ctr + +;
}
Return KeyED ($tmp, $key);
}
function Decrypt ($txt, $key)
{
$txt = KeyED ($txt, $key);
$tmp = "";
for ($i =0; $i {
$md 5 = substr ($txt, $i, 1);
$i + +;
$tmp. = (substr ($txt, $i, 1) ^ $md 5);
}
return $tmp;
}
$string = "Hello world!!!";
//Encrypt $string, and store it in $enc _text
$enc _text = Encrypt ($string, $key);
//Decrypt the encrypted text $enc _text, and store it in $dec _text
$dec _text = Decrypt ($enc _text, $key);
Print "Original text: $string
N";
Print "Encrypted text: $enc _text
N";
Print "decrypted text: $dec _text
N";
?>

Above describes the Base64 encryption decryption of a piece of PHP encryption and decryption code, including the Base64 encryption and decryption of the content, I hope to be interested in PHP tutorial friends helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.