一段php加密解密的代码参考,希望能够帮到有这方便需求的朋友。一段php加密解密的代码参考,希望能够帮到有这方便需求的朋友。 ?php$key = "This is supposed to be a secret key !!!";function keyED($txt,$encrypt_key){$encrypt_key = md5($encrypt_key);$ctr=0;$tmp = "";for ($i=0;$istrlen($txt);$i++){if ($ctr==strlen($encrypt_key)) $ctr=0;$tmp.= substr($t
<?php
$key = "This is supposed to be a secret key !!!";
function keyED($txt,$encrypt_key)
{
$encrypt_key = md5($encrypt_key);
$ctr=0;
$tmp = "";
for ($i=0;$i<strlen($txt);$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<strlen($txt);$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<strlen($txt);$i++)
{
$md5 = substr($txt,$i,1);
$i++;
$tmp.= (substr($txt,$i,1) ^ $md5);
}
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 <Br>\n";
print "Encrypted text : $enc_text <Br>\n";
print "Decrypted text : $dec_text <Br>\n";
?>
沃梦达教程
本文标题为:一段php加密解密的代码参考
基础教程推荐
猜你喜欢
- php header()函数实现文件下载的实例 2022-10-13
- php实现计数器的实例代码 2022-08-27
- php获取textarea的数据里的每一行数据,并转为数组 2023-09-13
- PHP将HTML页面输出为word文档的办法 2022-09-23
- php非stream流chatgpt3.5输出模式代码用于批量发布文章 2023-09-13
- php将文本内容导出为word文档,php导出doc文档 2022-09-18
- php实现数组分组简单的一个代码实例 2022-08-01
- PHP代码判断IP地址是否相匹配或者是否在一个IP段里 2023-07-08
- PHP正则匹配日期和时间(时间戳转换)的实例代码 2022-07-22
- php三个数求最大值的实例代码 2022-11-19