當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Crypt_Blowfish::setKey方法代碼示例

本文整理匯總了PHP中Crypt_Blowfish::setKey方法的典型用法代碼示例。如果您正苦於以下問題:PHP Crypt_Blowfish::setKey方法的具體用法?PHP Crypt_Blowfish::setKey怎麽用?PHP Crypt_Blowfish::setKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Crypt_Blowfish的用法示例。


在下文中一共展示了Crypt_Blowfish::setKey方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: strlen

 function wrap_bp_decrypt($cipher_id, $key, $text, $iv)
 {
     $bf = new Crypt_Blowfish('cbc');
     $iv_size = strlen($iv);
     if ($iv_size !== false && $iv_size > 0) {
         $bf->setKey($key, $iv);
     } else {
         $bf->setKey($key);
     }
     $text = $bf->decrypt($text);
     if (PEAR::isError($text)) {
         $last_bp_error = 'blowfish_decrypt_error ' . $text->getMessage();
         return false;
     }
     $text = rtrim($text, "");
     return $text;
 }
開發者ID:siefca,項目名稱:pageprotectionplus,代碼行數:17,代碼來源:CryptBlowfish.php

示例2: __construct

 public function __construct($secret)
 {
     $bf = new Crypt_Blowfish('cbc');
     $bf->setKey($secret);
     if (PEAR::isError($bf)) {
         throw new Exception('init error');
     }
     $this->blowfish = $bf;
 }
開發者ID:AF83,項目名稱:session-cookie,代碼行數:9,代碼來源:session.php

示例3: decrypt

 /**
  *
  *
  * @param
  * @return
  */
 function decrypt($name, $encrypted_string)
 {
     if (!$name && !$encrypted_string) {
         return $encrypted_string;
     }
     global $application;
     $session_id = session_id();
     $tables = $this->getTables();
     $table = 'crypto_keys';
     $k = $tables[$table]['columns'];
     $query = new DB_Select();
     $query->addSelectField($k["key"], "crypto_key");
     $query->WhereValue($k["id"], DB_EQ, $session_id);
     $query->WhereAnd();
     $query->WhereValue($k["name"], DB_EQ, $name);
     $result = $application->db->getDB_Result($query);
     if (isset($result[0]['crypto_key']) && $result[0]['crypto_key']) {
         $key = $result[0]['crypto_key'];
         $query = new DB_Delete($table);
         $query->WhereValue($k["id"], DB_EQ, $session_id);
         $query->WhereAnd();
         $query->WhereValue($k["name"], DB_EQ, $name);
         $application->db->getDB_Result($query);
         $blowfish = new Crypt_Blowfish($key);
         $blowfish->setKey($key);
         $string = $blowfish->decrypt($encrypted_string);
     } else {
         return "";
     }
     return $string;
 }
開發者ID:KICHIRO20,項目名稱:-Myproject_part1-,代碼行數:37,代碼來源:crypto_api.php


注:本文中的Crypt_Blowfish::setKey方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。