PHP encryption and decryption function with key

Source: Internet
Author: User
Tags chr decrypt md5 ord strlen

Code

The code is as follows Copy Code

function Encrypt ($data, $key)
{
$key = MD5 ($key);
$x = 0;
$len = strlen ($data);
$l = strlen ($key);
for ($i = 0; $i < $len; $i + +)
{
if ($x = = $l)
{
$x = 0;
}
$char. = $key {$x};
$x + +;
}
for ($i = 0; $i < $len; $i + +)
{
$str. = Chr (Ord ($data {$i}) + (Ord ($char {$i}))% 256);
}
Return Base64_encode ($STR);
}

function Decrypt ($data, $key)
{
$key = MD5 ($key);
$x = 0;
$data = Base64_decode ($data);
$len = strlen ($data);
$l = strlen ($key);
for ($i = 0; $i < $len; $i + +)
{
if ($x = = $l)
{
$x = 0;
}
$char. = substr ($key, $x, 1);
$x + +;
}
for ($i = 0; $i < $len; $i + +)
{
if (Ord (substr ($data, $i, 1)) < Ord (substr ($char, $i, 1))
{
$str. = Chr ((Ord (substr ($data, $i, 1)) + 256)-Ord (substr ($char, $i, 1));
}
Else
{
$str. = Chr (Ord (substr ($data, $i, 1))-Ord (substr ($char, $i, 1));
}
}
return $str;
}

The above two functions, one is the encryption function, one is the decryption function. Encrypt ($data, $key) is the cryptographic function, where $data is the content to be encrypted, $key is your key. Decrypt ($data, $key) is the decryption function, where $data is the string to decrypt, $key is the key

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.