真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在PHP中使用bcrypt來哈希密碼

這篇文章將為大家詳細(xì)講解有關(guān)怎么在PHP中使用bcrypt來哈希密碼,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

在新華等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站設(shè)計(jì)制作、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需網(wǎng)站設(shè)計(jì),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,營銷型網(wǎng)站,外貿(mào)網(wǎng)站制作,新華網(wǎng)站建設(shè)費(fèi)用合理。

我偶爾會聽到“使用bcrypt在PHP中存儲密碼,bcrypt規(guī)則”的建議。

但是什么bcrypt?PHP不提供任何這樣的功能,維基百科關(guān)于文件加密實(shí)用程序的喋喋不休,Web搜索只是揭示了幾種不同語言的Blowfish實(shí)現(xiàn)?,F(xiàn)在Blowfish也可以通過PHP獲得mcrypt,但這對于存儲密碼有什么幫助?河豚是一種通用密碼,它有兩種工作方式。如果它可以被加密,它可以被解密。密碼需要單向散列函數(shù)。

什么是解釋?


bcrypt是一種哈希算法,可以通過硬件進(jìn)行擴(kuò)展(通過可配置的循環(huán)次數(shù))。其緩慢和多輪確保攻擊者必須部署大量資金和硬件才能破解密碼。添加到每個(gè)密碼鹽(bcrypt需要鹽),你可以肯定的是,一個(gè)攻擊實(shí)際上是不可行的,沒有可笑的金額或硬件。

bcrypt使用Eksblowfish算法來散列密碼。雖然EksblowfishBlowfish的加密階段完全相同,但Eksblowfish的關(guān)鍵調(diào)度階段確保任何后續(xù)狀態(tài)都依賴salt和key(用戶密碼),并且在沒有兩者都知道的情況下不能預(yù)先計(jì)算狀態(tài)。由于這個(gè)關(guān)鍵差異,bcrypt是一種單向哈希算法。如果不知道鹽,圓和密碼(密碼),則無法檢索純文本密碼。[ 來源 ]

如何使用bcrypt:

使用PHP> = 5.5-DEV

密碼散列函數(shù)現(xiàn)在已直接構(gòu)建到PHP> = 5.5中。您現(xiàn)在可以使用password_hash()創(chuàng)建bcrypt任何密碼的哈希值:

 11
];
echo password_hash('rasmuslerdorf', PASSWORD_BCRYPT, $options)."\n";
// $2y$11$6DP.V0nO7YI3iSki4qog6OQI5eiO6Jnjsqg7vdnb.JgGIsxniOn4C

要根據(jù)現(xiàn)有的散列驗(yàn)證用戶提供的密碼,可以使用以下password_verify()方式:

使用PHP> = 5.3.7,<5.5-DEV(也是RedHat PHP> = 5.3.3)

GitHub上有一個(gè)兼容庫,它基于上面用C編寫的函數(shù)的源代碼,它提供了相同的功能。安裝兼容性庫后,用法與上述相同(如果仍在5.3.x分支上,則減去速記數(shù)組表示法)。

使用PHP <5.3.7 (DEPRECATED)

您可以使用crypt()函數(shù)來生成輸入字符串的bcrypt散列。這個(gè)類可以自動生成salt并根據(jù)輸入驗(yàn)證現(xiàn)有的散列。如果您使用的PHP版本高于或等于5.3.7,強(qiáng)烈建議您使用內(nèi)置函數(shù)或compat庫。此替代方案僅用于歷史目的。

class Bcrypt{
  private $rounds;

  public function __construct($rounds = 12) {
    if (CRYPT_BLOWFISH != 1) {
      throw new Exception("bcrypt not supported in this installation. See http://php.net/crypt");
    }

    $this->rounds = $rounds;
  }

  public function hash($input){
    $hash = crypt($input, $this->getSalt());

    if (strlen($hash) > 13)
      return $hash;

    return false;
  }

  public function verify($input, $existingHash){
    $hash = crypt($input, $existingHash);

    return $hash === $existingHash;
  }

  private function getSalt(){
    $salt = sprintf('$2a$%02d$', $this->rounds);

    $bytes = $this->getRandomBytes(16);

    $salt .= $this->encodeBytes($bytes);

    return $salt;
  }

  private $randomState;
  private function getRandomBytes($count){
    $bytes = '';

    if (function_exists('openssl_random_pseudo_bytes') &&
        (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')) { // OpenSSL is slow on Windows
      $bytes = openssl_random_pseudo_bytes($count);
    }

    if ($bytes === '' && is_readable('/dev/urandom') &&
       ($hRand = @fopen('/dev/urandom', 'rb')) !== FALSE) {
      $bytes = fread($hRand, $count);
      fclose($hRand);
    }

    if (strlen($bytes) < $count) {
      $bytes = '';

      if ($this->randomState === null) {
        $this->randomState = microtime();
        if (function_exists('getmypid')) {
          $this->randomState .= getmypid();
        }
      }

      for ($i = 0; $i < $count; $i += 16) {
        $this->randomState = md5(microtime() . $this->randomState);

        if (PHP_VERSION >= '5') {
          $bytes .= md5($this->randomState, true);
        } else {
          $bytes .= pack('H*', md5($this->randomState));
        }
      }

      $bytes = substr($bytes, 0, $count);
    }

    return $bytes;
  }

  private function encodeBytes($input){
    // The following is code from the PHP Password Hashing Framework
    $itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';

    $output = '';
    $i = 0;
    do {
      $c1 = ord($input[$i++]);
      $output .= $itoa64[$c1 >> 2];
      $c1 = ($c1 & 0x03) << 4;
      if ($i >= 16) {
        $output .= $itoa64[$c1];
        break;
      }

      $c2 = ord($input[$i++]);
      $c1 |= $c2 >> 4;
      $output .= $itoa64[$c1];
      $c1 = ($c2 & 0x0f) << 2;

      $c2 = ord($input[$i++]);
      $c1 |= $c2 >> 6;
      $output .= $itoa64[$c1];
      $output .= $itoa64[$c2 & 0x3f];
    } while (true);

    return $output;
  }
}

你可以使用這樣的代碼:

$bcrypt = new Bcrypt(15);

$hash = $bcrypt->hash('password');
$isGood = $bcrypt->verify('password', $hash);或者,您也可以使用Portable PHP Hashing Framework

關(guān)于“怎么在PHP中使用bcrypt來哈希密碼”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。


分享文章:怎么在PHP中使用bcrypt來哈希密碼
轉(zhuǎn)載源于:http://weahome.cn/article/gppojd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部