php加密程序
- <?php
- //加密
- function jiami($data,$psw){
- for($i=0,$j=0;$i<strlen($data);$i++,$j++){
- $middle = ord(substr($data,$i,1)) +
- ord(substr($psw,$j,1));
- if ($j > strlen($psw)){
- $j=0;//开源代码phpfensi.com
- }
- $str .=chr($middle);
- }
- return($str);
- }
- //解密
- function jiemi($data,$psw){
- for($i=0,$j=0;$i<strlen($data);$i++,$j++){
- $middle = ord(substr($data,$i,1)) -
- ord(substr($psw,$j,1));
- if ($j > strlen($psw)){
- $j=0;
- }
- $str .=chr($middle);
- }
- return($str);
- }
- ?>