婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > php實現的rc4加密解密類定義與用法示例

php實現的rc4加密解密類定義與用法示例

熱門標簽:代理打電話機器人 太原400電話申請流程 企業400電話辦理多少費用 桂陽公司如何做地圖標注 電信外呼系統多少錢一個月 神龍斗士電話機器人 宿州正規外呼系統軟件 合肥企業外呼系統線路 萍鄉商鋪地圖標注

本文實例講述了php實現的rc4加密解密類。分享給大家供大家參考,具體如下:

class.rc4crypt.php文件:

?php
/* 
 * By julying.com
 */
define('CRYPT_RC4_MODE_INTERNAL', 1);
define('CRYPT_RC4_MODE_MCRYPT', 2);
define('CRYPT_RC4_ENCRYPT', 0);
define('CRYPT_RC4_DECRYPT', 1);
class Crypt_RC4 {
 /**
  * The Key
  *
  * @see Crypt_RC4::setKey()
  * @var String
  * @access private
  */
 var $key = "\0";
 /**
  * The Key Stream for encryption
  *
  * If CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT, this will be equal to the mcrypt object
  *
  * @see Crypt_RC4::setKey()
  * @var Array
  * @access private
  */
 var $encryptStream = false;
 /**
  * The Key Stream for decryption
  *
  * If CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT, this will be equal to the mcrypt object
  *
  * @see Crypt_RC4::setKey()
  * @var Array
  * @access private
  */
 var $decryptStream = false;
 /**
  * The $i and $j indexes for encryption
  *
  * @see Crypt_RC4::_crypt()
  * @var Integer
  * @access private
  */
 var $encryptIndex = 0;
 /**
  * The $i and $j indexes for decryption
  *
  * @see Crypt_RC4::_crypt()
  * @var Integer
  * @access private
  */
 var $decryptIndex = 0;
 /**
  * MCrypt parameters
  *
  * @see Crypt_RC4::setMCrypt()
  * @var Array
  * @access private
  */
 var $mcrypt = array('', '');
 /**
  * The Encryption Algorithm
  *
  * Only used if CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT. Only possible values are MCRYPT_RC4 or MCRYPT_ARCFOUR.
  *
  * @see Crypt_RC4::Crypt_RC4()
  * @var Integer
  * @access private
  */
 var $mode;
 /**
  * Default Constructor.
  *
  * Determines whether or not the mcrypt extension should be used.
  *
  * @param optional Integer $mode
  * @return Crypt_RC4
  * @access public
  */
 var $continuousBuffer ;
 function Crypt_RC4()
 {
  if ( !defined('CRYPT_RC4_MODE') ) {
   switch (true) {
    case extension_loaded('mcrypt')  (defined('MCRYPT_ARCFOUR') || defined('MCRYPT_RC4')):
     // i'd check to see if rc4 was supported, by doing in_array('arcfour', mcrypt_list_algorithms('')),
     // but since that can be changed after the object has been created, there doesn't seem to be
     // a lot of point...
     define('CRYPT_RC4_MODE', CRYPT_RC4_MODE_MCRYPT);
     break;
    default:
     define('CRYPT_RC4_MODE', CRYPT_RC4_MODE_INTERNAL);
   }
  }
  switch ( CRYPT_RC4_MODE ) {
   case CRYPT_RC4_MODE_MCRYPT:
    switch (true) {
     case defined('MCRYPT_ARCFOUR'):
      $this->mode = MCRYPT_ARCFOUR;
      break;
     case defined('MCRYPT_RC4');
      $this->mode = MCRYPT_RC4;
    }
  }
 }
 /**
  * Sets the key.
  *
  * Keys can be between 1 and 256 bytes long. If they are longer then 256 bytes, the first 256 bytes will
  * be used. If no key is explicitly set, it'll be assumed to be a single null byte.
  *
  * @access public
  * @param String $key
  */
 function setKey($key)
 {
  $this->key = $key;
  if ( CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT ) {
   return;
  }
  $keyLength = strlen($key);
  $keyStream = array();
  for ($i = 0; $i  256; $i++) {
   $keyStream[$i] = $i;
  }
  $j = 0;
  for ($i = 0; $i  256; $i++) {
   $j = ($j + $keyStream[$i] + ord($key[$i % $keyLength]))  255;
   $temp = $keyStream[$i];
   $keyStream[$i] = $keyStream[$j];
   $keyStream[$j] = $temp;
  }
  $this->encryptIndex = $this->decryptIndex = array(0, 0);
  $this->encryptStream = $this->decryptStream = $keyStream;
 }
 /**
  * Dummy function.
  *
  * Some protocols, such as WEP, prepend an "initialization vector" to the key, effectively creating a new key [1].
  * If you need to use an initialization vector in this manner, feel free to prepend it to the key, yourself, before
  * calling setKey().
  *
  * [1] WEP's initialization vectors (IV's) are used in a somewhat insecure way. Since, in that protocol,
  * the IV's are relatively easy to predict, an attack described by
  * {@link http://www.drizzle.com/~aboba/IEEE/rc4_ksaproc.pdf Scott Fluhrer, Itsik Mantin, and Adi Shamir}
  * can be used to quickly guess at the rest of the key. The following links elaborate:
  *
  * {@link http://www.rsa.com/rsalabs/node.asp?id=2009 http://www.rsa.com/rsalabs/node.asp?id=2009}
  * {@link http://en.wikipedia.org/wiki/Related_key_attack http://en.wikipedia.org/wiki/Related_key_attack}
  *
  * @param String $iv
  * @see Crypt_RC4::setKey()
  * @access public
  */
 function setIV($iv)
 {
 }
 /**
  * Sets MCrypt parameters. (optional)
  *
  * If MCrypt is being used, empty strings will be used, unless otherwise specified.
  *
  * @link http://php.net/function.mcrypt-module-open#function.mcrypt-module-open
  * @access public
  * @param optional Integer $algorithm_directory
  * @param optional Integer $mode_directory
  */
 function setMCrypt($algorithm_directory = '', $mode_directory = '')
 {
  if ( CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT ) {
   $this->mcrypt = array($algorithm_directory, $mode_directory);
   $this->_closeMCrypt();
  }
 }
 /**
  * Encrypts a message.
  *
  * @see Crypt_RC4::_crypt()
  * @access public
  * @param String $plaintext
  */
 function encrypt($plaintext)
 {
  return self::toHex($this->_crypt($plaintext, CRYPT_RC4_ENCRYPT));
 }
 /**
  * Decrypts a message.
  *
  * $this->decrypt($this->encrypt($plaintext)) == $this->encrypt($this->encrypt($plaintext)).
  * Atleast if the continuous buffer is disabled.
  *
  * @see Crypt_RC4::_crypt()
  * @access public
  * @param String $ciphertext
  */
 function decrypt($ciphertext)
 {
  $ciphertext = self::fromHex($ciphertext);
  return $this->_crypt($ciphertext, CRYPT_RC4_DECRYPT);
 }
 /**
  * Encrypts or decrypts a message.
  *
  * @see Crypt_RC4::encrypt()
  * @see Crypt_RC4::decrypt()
  * @access private
  * @param String $text
  * @param Integer $mode
  */
 function _crypt($text, $mode)
 {
  if ( CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT ) {
   $keyStream = $mode == CRYPT_RC4_ENCRYPT ? 'encryptStream' : 'decryptStream';
   if ($this->$keyStream === false) {
    $this->$keyStream = mcrypt_module_open($this->mode, $this->mcrypt[0], MCRYPT_MODE_STREAM, $this->mcrypt[1]);
    mcrypt_generic_init($this->$keyStream, $this->key, '');
   } else if (!$this->continuousBuffer) {
    mcrypt_generic_init($this->$keyStream, $this->key, '');
   }
   $newText = mcrypt_generic($this->$keyStream, $text);
   if (!$this->continuousBuffer) {
    mcrypt_generic_deinit($this->$keyStream);
   }
   return $newText;
  }
  if ($this->encryptStream === false) {
   $this->setKey($this->key);
  }
  switch ($mode) {
   case CRYPT_RC4_ENCRYPT:
    $keyStream = $this->encryptStream;
    list($i, $j) = $this->encryptIndex;
    break;
   case CRYPT_RC4_DECRYPT:
    $keyStream = $this->decryptStream;
    list($i, $j) = $this->decryptIndex;
  }
  $newText = '';
  for ($k = 0; $k  strlen($text); $k++) {
   $i = ($i + 1)  255;
   $j = ($j + $keyStream[$i])  255;
   $temp = $keyStream[$i];
   $keyStream[$i] = $keyStream[$j];
   $keyStream[$j] = $temp;
   $temp = $keyStream[($keyStream[$i] + $keyStream[$j])  255];
   $newText.= chr(ord($text[$k]) ^ $temp);
  }
  if ($this->continuousBuffer) {
   switch ($mode) {
    case CRYPT_RC4_ENCRYPT:
     $this->encryptStream = $keyStream;
     $this->encryptIndex = array($i, $j);
     break;
    case CRYPT_RC4_DECRYPT:
     $this->decryptStream = $keyStream;
     $this->decryptIndex = array($i, $j);
   }
  }
  return $newText;
 }
 /**
  * Treat consecutive "packets" as if they are a continuous buffer.
  *
  * Say you have a 16-byte plaintext $plaintext. Using the default behavior, the two following code snippets
  * will yield different outputs:
  *
  * code>
  * echo $rc4->encrypt(substr($plaintext, 0, 8));
  * echo $rc4->encrypt(substr($plaintext, 8, 8));
  * /code>
  * code>
  * echo $rc4->encrypt($plaintext);
  * /code>
  *
  * The solution is to enable the continuous buffer. Although this will resolve the above discrepancy, it creates
  * another, as demonstrated with the following:
  *
  * code>
  * $rc4->encrypt(substr($plaintext, 0, 8));
  * echo $rc4->decrypt($des->encrypt(substr($plaintext, 8, 8)));
  * /code>
  * code>
  * echo $rc4->decrypt($des->encrypt(substr($plaintext, 8, 8)));
  * /code>
  *
  * With the continuous buffer disabled, these would yield the same output. With it enabled, they yield different
  * outputs. The reason is due to the fact that the initialization vector's change after every encryption /
  * decryption round when the continuous buffer is enabled. When it's disabled, they remain constant.
  *
  * Put another way, when the continuous buffer is enabled, the state of the Crypt_DES() object changes after each
  * encryption / decryption round, whereas otherwise, it'd remain constant. For this reason, it's recommended that
  * continuous buffers not be used. They do offer better security and are, in fact, sometimes required (SSH uses them),
  * however, they are also less intuitive and more likely to cause you problems.
  *
  * @see Crypt_RC4::disableContinuousBuffer()
  * @access public
  */
 function enableContinuousBuffer()
 {
  $this->continuousBuffer = true;
 }
 /**
  * Treat consecutive packets as if they are a discontinuous buffer.
  *
  * The default behavior.
  *
  * @see Crypt_RC4::enableContinuousBuffer()
  * @access public
  */
 function disableContinuousBuffer()
 {
  if ( CRYPT_RC4_MODE == CRYPT_RC4_MODE_INTERNAL ) {
   $this->encryptIndex = $this->decryptIndex = array(0, 0);
   $this->setKey($this->key);
  }
  $this->continuousBuffer = false;
 }
 /**
  * Dummy function.
  *
  * Since RC4 is a stream cipher and not a block cipher, no padding is necessary. The only reason this function is
  * included is so that you can switch between a block cipher and a stream cipher transparently.
  *
  * @see Crypt_RC4::disablePadding()
  * @access public
  */
 function enablePadding()
 {
 }
 /**
  * Dummy function.
  *
  * @see Crypt_RC4::enablePadding()
  * @access public
  */
 function disablePadding()
 {
 }
 /**
  * Class destructor.
  *
  * Will be called, automatically, if you're using PHP5. If you're using PHP4, call it yourself. Only really
  * needs to be called if mcrypt is being used.
  *
  * @access public
  */
 function __destruct()
 {
  if ( CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT ) {
   $this->_closeMCrypt();
  }
 }
 /**
  * Properly close the MCrypt objects.
  *
  * @access prviate
  */
 function _closeMCrypt()
 {
  if ( $this->encryptStream !== false ) {
   if ( $this->continuousBuffer ) {
    mcrypt_generic_deinit($this->encryptStream);
   }
   mcrypt_module_close($this->encryptStream);
   $this->encryptStream = false;
  }
  if ( $this->decryptStream !== false ) {
   if ( $this->continuousBuffer ) {
    mcrypt_generic_deinit($this->decryptStream);
   }
   mcrypt_module_close($this->decryptStream);
   $this->decryptStream = false;
  }
 }
 // @function fromHex 把十六進制數轉換成字符串
 function toHex($sa , $len = 0){
  $buf = "";
  if( $len == 0 )
   $len = strlen($sa) ;
  for ($i = 0; $i  $len; $i++)
  {
   $val = dechex(ord($sa{$i}));  
   if(strlen($val) 2) 
    $val = "0".$val;
   $buf .= $val;
  }
  return $buf;
 }
 // @function fromHex 把十六進制數轉換成字符串 
 function fromHex($sa){
  $buf = "";
  $len = strlen($sa) ;
  for($i = 0; $i  $len; $i += 2){
   $val = chr(hexdec(substr($sa, $i, 2)));
   $buf .= $val;
  }
  return $buf;
 }
}

使用方法:

include('class.rc4crypt.php');
$rc4 = new Crypt_RC4();
$rc4 -> setKey('21sd54a1w5q');
$text = 'www.jb51.net';
echo $x = $rc4->encrypt($text);//加密
echo 'br />';
echo $rc4->decrypt( $x) ;//解密

運行結果:

7907bb7c6694f179e9642ebd
www.jb51.net

PS:關于加密解密感興趣的朋友還可以參考本站在線工具:

在線RC4加密/解密工具:
http://tools.jb51.net/password/rc4_encode

文字在線加密解密工具(包含AES、DES、RC4等):
http://tools.jb51.net/password/txt_encode

在線散列/哈希算法加密工具:
http://tools.jb51.net/password/hash_encrypt

在線MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具:
http://tools.jb51.net/password/hash_md5_sha

在線sha1/sha224/sha256/sha384/sha512加密工具:
http://tools.jb51.net/password/sha_encode

更多關于PHP相關內容感興趣的讀者可查看本站專題:《php加密方法總結》、《PHP編碼與轉碼操作技巧匯總》、《PHP數學運算技巧總結》、《PHP數組(Array)操作技巧大全》、《php字符串(string)用法總結》、《PHP數據結構與算法教程》、《php程序設計算法總結》及《php正則表達式用法總結》

希望本文所述對大家PHP程序設計有所幫助。

您可能感興趣的文章:
  • PHP rsa加密解密算法原理解析
  • 基于PHP實現解密或加密Cloudflar郵箱保護
  • PHP實現的AES加密、解密封裝類與用法示例
  • PHP實現的DES加密解密類定義與用法示例
  • 基于PHP RSA密文過長加密解密 越過1024的解決方法
  • PHP的RSA加密解密方法以及開發接口使用
  • 六種php加密解密方法實例講解

標簽:白銀 太原 辛集 鄂州 廊坊 綏化 崇左 衡陽

巨人網絡通訊聲明:本文標題《php實現的rc4加密解密類定義與用法示例》,本文關鍵詞  php,實現,的,rc4,加密解密,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《php實現的rc4加密解密類定義與用法示例》相關的同類信息!
  • 本頁收集關于php實現的rc4加密解密類定義與用法示例的相關信息資訊供網民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    国产精品免费久久| 在线观看日韩高清av| 亚洲成人av中文| 亚洲日本在线a| 亚洲综合丁香婷婷六月香| 亚洲男人天堂av| 亚洲午夜免费电影| 蜜臀99久久精品久久久久久软件| 日韩精品久久理论片| 青青国产91久久久久久| 精品一区二区在线播放| 国产传媒久久文化传媒| eeuss影院一区二区三区| eeuss鲁片一区二区三区在线看| 91蜜桃视频在线| 91精品在线免费| 精品av久久707| 亚洲视频小说图片| 五月天中文字幕一区二区| 九九精品视频在线看| 99久久777色| 欧美精品久久99久久在免费线| 欧美va亚洲va| 自拍偷拍亚洲激情| 麻豆视频观看网址久久| 成人动漫视频在线| 日韩三级高清在线| 国产精品久久久久久久裸模| 亚洲国产毛片aaaaa无费看| 美腿丝袜一区二区三区| 99精品国产视频| 91精品麻豆日日躁夜夜躁| 久久久99精品免费观看不卡| 亚洲综合图片区| 韩国av一区二区三区四区 | 欧美一区二区三区不卡| 日本一区二区综合亚洲| 石原莉奈一区二区三区在线观看| 国产综合色在线| 欧美三级乱人伦电影| 国产日产欧美精品一区二区三区| 亚洲第一搞黄网站| 成人精品国产一区二区4080| 欧美一区午夜视频在线观看| 亚洲日韩欧美一区二区在线| 国产综合成人久久大片91| 欧美在线短视频| 中文字幕一区在线观看视频| 韩国在线一区二区| 欧美二区乱c少妇| 亚洲精品国产第一综合99久久| 久久99精品久久久久久动态图| 欧日韩精品视频| 日韩美女精品在线| 成人午夜激情在线| 国产亚洲成aⅴ人片在线观看| 美女尤物国产一区| 欧美一区二区三区在线看| 亚洲一区二区三区激情| 日本韩国视频一区二区| 中文字幕一区二区视频| 高清beeg欧美| 国产女人18毛片水真多成人如厕 | 成人动漫中文字幕| 久久精品视频一区| 国产精品一二三| 国产三级精品视频| 国产高清不卡二三区| 国产欧美日韩不卡免费| 国产福利91精品一区| 国产人伦精品一区二区| 国产精品一区二区在线播放| 久久蜜桃av一区精品变态类天堂| 激情综合色综合久久| 亚洲精品一区二区三区精华液| 另类欧美日韩国产在线| 欧美精品一区二区三区视频| 国产在线观看一区二区| www成人在线观看| 久久66热偷产精品| 久久久精品综合| 成人在线综合网站| 亚洲激情在线激情| 欧美久久久影院| 久久99深爱久久99精品| 国产日韩v精品一区二区| 99久久精品免费看| 丝袜美腿亚洲一区| 日韩欧美久久久| 国产成人精品影视| 亚洲欧美福利一区二区| 欧美高清激情brazzers| 美女被吸乳得到大胸91| 久久久久久电影| 97久久精品人人做人人爽50路| 亚洲免费在线看| 欧美一区二区三区视频在线| 国产风韵犹存在线视精品| 亚洲自拍偷拍综合| xfplay精品久久| 91香蕉视频污| 蜜臀久久久99精品久久久久久| 国产亚洲精品7777| 欧美日韩在线综合| 国模冰冰炮一区二区| 亚洲精品日韩专区silk| 精品国产免费一区二区三区香蕉| 成人av在线资源| 久久精品国产**网站演员| 国产亚洲人成网站| 欧美亚洲高清一区| 成人性生交大片免费看中文| 天天综合天天做天天综合| 国产精品超碰97尤物18| 精品国产一区二区三区久久久蜜月 | 中文字幕一区在线观看视频| 欧美伦理电影网| 97精品视频在线观看自产线路二| 麻豆成人免费电影| 亚洲国产精品久久不卡毛片| 国产精品久久久久久久久免费丝袜| 欧美一区二区视频网站| 91丨九色丨尤物| 国产精品91一区二区| 奇米精品一区二区三区在线观看一| 亚洲视频每日更新| 欧美激情一区二区在线| 欧美一区二区三区免费视频| 欧美中文字幕一区二区三区亚洲| 成人av网在线| 国产不卡视频一区| 国产精品夜夜爽| 国产麻豆日韩欧美久久| 另类小说一区二区三区| 日韩二区在线观看| 亚洲成av人在线观看| 一区二区三区四区在线播放 | 91精品国产色综合久久不卡蜜臀| 91免费精品国自产拍在线不卡| 国产精品 欧美精品| 国产精品一区二区x88av| 激情国产一区二区 | 中文字幕亚洲在| 欧美激情一区二区三区在线| 国产色爱av资源综合区| 国产亲近乱来精品视频 | 欧美精品777| 51精品国自产在线| 777午夜精品免费视频| 欧美久久久久久蜜桃| 91精品中文字幕一区二区三区| 欧美一级黄色大片| 精品久久人人做人人爰| 久久精品一区蜜桃臀影院| 久久久久久久综合日本| 久久精品亚洲精品国产欧美kt∨ | 91电影在线观看| 欧美在线观看视频一区二区 | 777欧美精品| 日韩一区二区电影| 久久婷婷色综合| 国产精品福利一区二区| 亚洲一区在线视频| 青青草国产精品97视觉盛宴| 国产乱码精品一区二区三区忘忧草| 国产乱对白刺激视频不卡| 成人在线视频首页| 色拍拍在线精品视频8848| 在线播放欧美女士性生活| 欧美精品一区二区三区四区| 国产精品免费视频观看| 亚洲综合网站在线观看| 久久精品二区亚洲w码| 成人综合在线视频| 7777女厕盗摄久久久| 精品国产网站在线观看| 国产精品每日更新| 五月天激情综合| 国产不卡视频在线播放| 欧美三级日本三级少妇99| 久久精品人人做| 亚洲国产视频一区二区| 国产在线播放一区三区四| 91丨porny丨首页| 7777精品伊人久久久大香线蕉的| 久久综合资源网| 亚洲一区二区三区爽爽爽爽爽| 玖玖九九国产精品| 在线中文字幕一区| 精品国产凹凸成av人导航| 一区二区免费视频| 国产成人一区在线| 91福利视频久久久久| 国产欧美一区二区精品秋霞影院| 亚洲成年人影院| aaa国产一区| www欧美成人18+| 日韩1区2区日韩1区2区| 91免费观看国产| 中文字幕欧美激情|