Maison > php教程 > php手册 > encryptlib PHP的一个加密库

encryptlib PHP的一个加密库

WBOY
Libérer: 2016-06-21 09:06:11
original
1211 Les gens l'ont consulté

加密

 function kPHPCrypt($strDataIn) {
  return StrRevCrypt(ROT13Crypt($strDataIn));
 }

 function ROT13Crypt($strDataIn) {
 
  //ABCDEFGHIJKLM
  //NOPQRSTUVWXYZ

  $newString = "";
 
  for ($i = 0; $i

   $temp = substr($strDataIn, $i, 1);
   $asc = ord($temp);

   $newChar = $temp;

   if (($asc >= 65) && ($asc     if ($asc     if ($asc >= 65 + 13) $newChar = chr($asc - 13);
   }
  
   if (($asc >= 97) && ($asc     if ($asc     if ($asc >= 97 + 13) $newChar = chr($asc - 13);
   }

   $newString = $newString . $newChar;  
  
  }

  return $newString;

 }


 function StrRevCrypt($strDataIn) {

  $newString = "";
 
  for ($i = strlen($strDataIn) - 1; $i >= 0; $i--) {
   $temp = substr($strDataIn, $i, 1);
   $newString = $newString . $temp;
  }

  return $newString;

 }

?>

 



Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal