租号平台php源码

JD租号 2020-05-12 12:40:02 0

求一个php版本的淘宝互刷平台源码,非常感谢

的宪政联邦共和制国家。其东濒大西洋,西临太平洋,北靠加拿大,南接墨西哥。美国国土面积超过962万平方公里,位居全球第三或第四(数据有争议);其人口总量也超过三亿人,少于中国和印度。1776年7月4日,大陆会议在费城正式通过《独立

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

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

$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);

//加密

function str2hex($s)

{

$r = "";

$hexes = array ("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f");

for ($i=0; $i> 4)] . $hexes [(ord($s{$i}) & 0xf)]);

return $r;

}

//解密

function hex2str($s)

{

$r = "";

for ( $i = 0; $i

$x1 = ord($s{$i});

$x1 = ($x1>=48 && $x1<58) ? $x1-48 : $x1-97+10;

$x2 = ord($s{$i+1});

$x2 = ($x2>=48 && $x2<58) ? $x2-48 : $x2-97+10;

$r .= chr((($x1 << 4) & 0xf0) | ($x2 & 0x0f));

}

return $r;

}

echo str2hex("山东");

echo "

";

echo hex2str("c9bdb6ab");

?>

版权声明

版权所属:JD租号

文章作者:sniper

本文地址:https://jdchery.com/wen/24191.html

版权声明:原创文章,转载时必须以链接形式注明原始出处及本声明。

JD租号-专业的游戏账号交易平台

https://jdchery.com/

| 沪ICP备14093508号

Powered By JD租号

使用手机软件扫描微信二维码

可获取更多热点资讯新闻

感谢JD租号友情技术支持