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