亚洲综合原千岁中文字幕_国产精品99久久久久久久vr_无码人妻aⅴ一区二区三区浪潮_成人h动漫精品一区二区三

主頁 > 知識庫 > 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加密解密類定義與用法示例的相關信息資訊供網民參考!
  • 推薦文章
    免费一级片在线| 99久久网站| 精品久久久久久中文| 日韩专区一区| 日韩在线观看免费完整版视频| 久久99这里只有精品国产| 你懂的日韩| 日本特黄特黄aaaaa大片| 国产成人欧美一区二区三区的| 国产欧美精品午夜在线播放| 日韩中文字幕一区| 久久精品人人做人人爽97| 精品在线观看一区| 欧美激情一区二区三区在线| 可以在线看黄的网站| 国产一区二区精品久| 免费国产在线观看不卡| 精品国产一区二区三区久| 久久99中文字幕| 日韩中文字幕一区| 国产欧美精品| 精品视频在线观看视频免费视频| 免费一级片在线| 精品视频在线看 | 日本伦理黄色大片在线观看网站| 亚洲 男人 天堂| 久久精品店| 二级特黄绝大片免费视频大片| 久久99中文字幕| 国产韩国精品一区二区三区| 国产一级生活片| 国产一区二区精品久| 国产国语对白一级毛片| 国产不卡在线看| 国产成人女人在线视频观看| 精品国产香蕉伊思人在线又爽又黄| 日本特黄一级| 国产福利免费观看| 国产一区二区福利久久| 91麻豆精品国产片在线观看 | 999精品在线| 亚飞与亚基在线观看| 久久精品道一区二区三区| 韩国三级视频在线观看| 一级毛片视频免费| a级毛片免费全部播放| 国产国语在线播放视频| 黄视频网站免费| 国产欧美精品| 一 级 黄 中国色 片| 亚洲第一页乱| 黄视频网站在线观看| 99热精品在线| 精品视频在线观看视频免费视频| 国产网站免费观看| 色综合久久天天综合绕观看| 国产美女在线一区二区三区| 国产成人精品影视| 日韩在线观看网站| 香蕉视频久久| 精品视频一区二区三区| 99热精品在线| 高清一级片| 日韩av成人| 国产麻豆精品hdvideoss| 九九久久国产精品| 国产精品自拍亚洲| 国产一区精品| 欧美国产日韩久久久| 国产美女在线一区二区三区| 久久福利影视| 国产网站免费| 欧美国产日韩久久久| 国产91丝袜在线播放0| 日韩中文字幕在线播放| 欧美国产日韩精品| 国产成人精品综合| 一级女性全黄久久生活片| 天天做日日爱| 欧美激情伊人| 国产不卡在线观看| 亚洲wwwwww| 中文字幕一区二区三区精彩视频| 精品久久久久久中文字幕一区| 成人免费观看的视频黄页| 精品国产一区二区三区国产馆 | 久久国产精品自线拍免费| 国产网站免费| 久久成人综合网| 国产一区二区精品久久91| 999精品在线| 九九免费精品视频| 精品久久久久久免费影院| 久久久成人网| 欧美激情一区二区三区在线播放| 国产a毛片| 精品久久久久久中文| 韩国三级香港三级日本三级| 国产伦理精品| 麻豆系列 在线视频| 中文字幕一区二区三区 精品| 日日日夜夜操| 好男人天堂网 久久精品国产这里是免费 国产精品成人一区二区 男人天堂网2021 男人的天堂在线观看 丁香六月综合激情 | 日韩av东京社区男人的天堂| 成人影院一区二区三区| 台湾毛片| 精品视频在线观看一区二区| 国产不卡高清在线观看视频 | 久久成人性色生活片| 91麻豆高清国产在线播放| 国产极品白嫩美女在线观看看| 91麻豆精品国产片在线观看 | 国产精品免费久久| 一本高清在线| a级精品九九九大片免费看| 欧美国产日韩一区二区三区| 国产精品自拍亚洲| 午夜欧美成人久久久久久| 国产视频一区在线| 国产一区二区精品尤物| 国产成a人片在线观看视频| 亚洲 国产精品 日韩| 四虎影视库| 欧美另类videosbestsex高清 | 午夜久久网| 国产欧美精品午夜在线播放| 999精品视频在线| 国产韩国精品一区二区三区| 日韩在线观看免费完整版视频| 国产一区二区精品尤物| 国产91精品一区| 免费一级片在线观看| 国产麻豆精品免费视频| 国产原创视频在线| 91麻豆高清国产在线播放| 精品视频一区二区三区免费| 一级女性大黄生活片免费| 九九干| 久久国产精品自线拍免费| 尤物视频网站在线观看| 好男人天堂网 久久精品国产这里是免费 国产精品成人一区二区 男人天堂网2021 男人的天堂在线观看 丁香六月综合激情 | 国产亚洲精品成人a在线| 欧美爱爱网| 二级特黄绝大片免费视频大片| 一本高清在线| 亚洲精品影院一区二区| 韩国三级一区| 亚洲精品中文一区不卡| 二级片在线观看| 成人影院一区二区三区| 久久国产精品自线拍免费| 日本特黄特色aaa大片免费| 日韩在线观看网站| 美国一区二区三区| 国产精品1024永久免费视频| 久久久久久久久综合影视网| 久久福利影视| 成人高清免费| 精品在线观看一区| 精品国产一区二区三区国产馆 | 日本免费乱理伦片在线观看2018| 九九干| 99热视热频这里只有精品| 欧美一区二区三区在线观看| 亚飞与亚基在线观看| 日韩在线观看免费| 国产伦精品一区二区三区在线观看| 精品视频在线观看视频免费视频| 二级特黄绝大片免费视频大片| 99色视频在线观看| 国产原创视频在线| 香蕉视频一级| 精品国产一级毛片| 国产伦久视频免费观看 视频| 国产视频在线免费观看| 国产精品123| 欧美国产日韩精品| 精品国产三级a∨在线观看| 亚飞与亚基在线观看| 一本高清在线| 国产91精品露脸国语对白| 欧美18性精品| 一级女性全黄久久生活片| 日韩免费在线视频| 精品毛片视频| 欧美a级片免费看| 久久99这里只有精品国产| 精品国产一级毛片| 国产成人精品综合在线| 免费一级片在线| 欧美激情一区二区三区在线播放 | 黄色福利| 午夜激情视频在线观看| 精品视频在线看 | 91麻豆国产| 日本在线www| 亚洲精品影院一区二区| 国产福利免费观看| 国产福利免费视频| 999精品在线|