Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rulllez!!!11"

OK, but what is this bcrypt? PHP doesn't offer any such functions, wikipedia babbles about a file-encryption utility and Googling just reveals a few implementations of blowfish in different languages. OK, blowfish is also available in PHP via mcrypt, but how does that help with storing passwords? Blowfish is a general purpose cypher, it works two ways. If it could be encrypted, it can be decrypted. Passwords need a one-way hashing function.

Could anyone explain?

link|improve this question

61% accept rate
4  
This question has been addressed previously, and their suggestion of using a standard library is excellent. Security is a complicated matter, and by using a package designed by someone who knows what the hell they're doing you're only helping yourself. – eykanal May 23 '11 at 1:44
1  
@eykanal - that page doesn't even mention bcrypt, much less explain what it is. – Vilx- May 23 '11 at 8:18
That's true. However, I included that link based on the title of the question, which IS answered in that question. Regarding the actual details of bcrypt, you can check out this journal paper. However, realize that your question is very broad; you're asking for a summary explanation of an entire field of research (which, I readily admit, I'm not familiar with myself). – eykanal May 23 '11 at 14:07
@eykanal - I don't ask an explanation of how it works. I just want to know what it is. Because whatever I can dig up on the net under the keyword "bcrypt", can be in no way used for hashing passwords. Not directly anyway, and not in PHP. OK, by now I understand that it's really the "phpass" package which uses blowfish to encrypt your password with a key that is derived from your password (in essence encrypting the password with itself). But referencing it as "bcrypt" is severely misleading, and that is what I wanted to clarify in this question. – Vilx- May 23 '11 at 14:44
@Vilx: I've added more information as to why bcrypt is a one-way hashing algorithm versus an encryption scheme in my answer. There is this whole misconception that bcrypt is just Blowfish when in fact it has a totally different key schedule which ensures that plain text cannot be recovered from the cipher text without knowing the initial state of the cipher (salt, rounds, key). – Andrew Moore Sep 8 '11 at 22:00
feedback

5 Answers

You do

bcrypt is an hashing algorithm which is scalable with hardware (via a configurable number of rounds). Its slowness and multiple rounds ensures that an attacker must deploy massive funds and hardware to be able to crack your passwords. Add to that per-password salts (bcrypt REQUIRES salts) and you can be sure that an attack is virtually unfeasible without either ludicrous amount of funds or hardware.

bcrypt uses the Eksblowfish algorithm to hash passwords. While the encryption phase of Eksblowfish and Blowfish are exactly the same, the key schedule phase of Eksblowfish ensures that any subsequent state depends on both salt and key (user password), and no state can be precomputed without the knowledge of both. Because of this key difference, bcrypt is a one-way hashing algorithm. You cannot retrieve the plain text password without already knowing the salt, rounds and key (password). [Source]

You can use crypt() function to generate bcrypt hashes of input strings. This class can automatically generate salts and verify existing hashes against an input.

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 slow on Win
      $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 (1);

    return $output;
  }
}

You may use this code as such:

$bcrypt = new Bcrypt(15);

$hash = $bcrypt->hash('password');
$isGood = $bcrypt->verify('password', $hash);

Alternatively, you may also use the Portable PHP Hashing Framework.

link|improve this answer
2  
@The Wicked Flea: Sorry to disappoint you, but mt_rand() is also seeded using the current time and the current process ID. Please see GENERATE_SEED() in /ext/standard/php_rand.h. – Andrew Moore Jul 8 '11 at 15:45
1  
Okay, then they're just as secure as each other. – Robert K Jul 8 '11 at 21:50
2  
@Tchalvak: You're right. Security by obscurity is a real proven method of preventing rainbow table attacks. (Sarcasm) – Andrew Moore Aug 5 '11 at 2:50
6  
@Mike: Go ahead, it's there for exactly that reason! – Andrew Moore Aug 12 '11 at 4:01
1  
For anyone thinking that they need to modify the beginning of the $salt string in the getSalt function, that is not necessary. The $2a$__ is part of the CRYPT_BLOWFISH salt. From the docs: "Blowfish hashing with a salt as follows: "$2a$", a two digit cost parameter, "$", and 22 digits from the alphabet". – jwinn Aug 21 '11 at 9:18
show 22 more comments
feedback

You 'll get a lot of infos here : http://chargen.matasano.com/chargen/2007/9/7/enough-with-the-rainbow-tables-what-you-need-to-know-about-s.html or http://www.openwall.com/phpass/

The goal is to hash the password with something slow so someone getting your password database will die trying to bruteforce it (a 10ms delay to check a password is nothing for you, a lot for someone trying to bruteforce it). Bcrypt is slow and can be used with a parameter to chose how slow it is.

link|improve this answer
3  
Enforce whatever you want, users will manage to screw up and use the same password on multiple things. So you have to protect it as much as possible or implement something which let you not have to store any password (SSO, openID etc.). – Arkh Jan 25 '11 at 15:49
1  
You can more easily prevent a bruteforce password attack by blocking "users" that fail to guess their password n-times in a day where n is greater than a reasonable number of tries, like 50. – coreyward Jan 25 '11 at 15:50
13  
No. Password hashing is used to protect against one attack : someone stole your database and want to get cleartext login + passwords. – Arkh Jan 25 '11 at 15:54
2  
@Josh K. I encourage you to try to crack some simple passwords after getting them through phpass tuned so it takes between 1ms and 10ms to compute it on your webserver. – Arkh Jan 25 '11 at 16:02
1  
Agreed. But the kind of user who will use qwerty as a password is also the kind of user who will mark down any complicated one somewhere he (and attackers) can easily read it. What using bcrypt accomplishes is that when your db goes public against your will, it'll be harder to get to those user who have some password like ^|$$&ZL6-£ than if you used sha512 in one pass. – Arkh Jan 25 '11 at 16:12
show 7 more comments
feedback

You can create a one-way hash with bcrypt using PHP's crypt() function and passing in an appropriate Blowfish salt. I don't see any compelling reason to use it over SHA though. The most important of the whole equation is that A) the algorithm hasn't been compromised and B) you properly salt each password. Don't use an application-wide salt; that opens up your entire application to attack from a single set of Rainbow tables.

http://php.net/manual/en/function.crypt.php

link|improve this answer
3  
This is the right approach - use PHP's crypt() function, which supports several different password hashing functions. Make sure you are not using CRYPT_STD_DES or CRYPT_EXT_DES - any of the other supported types are fine (and includes bcrypt, under the name CRYPT_BLOWFISH). – caf Jan 27 '11 at 5:41
4  
SHA indeed has a cost parameter as well, via the 'rounds' option. When using that, I also see no reason to favour bcrypt. – Pieter Ennes Jul 7 '11 at 12:03
1  
Actually, a single SHA-1 (or MD5) of a password is still easily brute-force-able, with or without salt (salt helps against rainbow tables, not against brute-forcing). Use bcrypt. – PaĆ­lo Ebermann Sep 9 '11 at 14:46
feedback

Current thinking: hashes should be slowest available, not fastest possible. This suppresses rainbow table attacks.

Also related, but precautionary: An attacker should never have unlimited access to your login screen. To prevent that: Set up an IP tracking table that records every hit along with the URI. If more than 5 attempts to login come from the same IP in any five minute period, block with explanation. A secondary approach is to have a two-tiered password scheme, like banks do. Putting a lock-out for failures on the second pass boosts security.

Summary: slow down the attacker by using time-consuming hash functions. Also, block on too many accesses to your login, and add a second password tier.

link|improve this answer
I think they assume that the attacker has already managed to steal my DB through some other means, and is now trying to get the passwords out in order to try them on paypal or something. – Vilx- Dec 7 '11 at 22:35
3  
Down vote as per the comement above. – Rolando Cruz Dec 12 '11 at 3:20
Those wondering why this answer was downvoted so heavily (when it seems to agree with what the current direction is in the rest of the answers), check the edit history. It's pulled a complete 180 since it was posted. – damianb May 21 at 0:21
feedback

You Don't

Use hash("sha512", $str); instead. You could also use another hashing algorithm (MD5, SHA1, SHA256) if you like.

See this related question. The argument that bcrypt is better because it is slower is not smart. You can generate a rainbow table to crack all <6 character passwords in a few days and then crack passwords in a few minutes. The solution to this is to enforce strong passwords on the user end, not change how you generate a hash.

Also, always use a salt.

::Edit::

I've thought about deleting this but really it makes me chuckle whenever I see it so I'm okay with leaving it up. I still believe that insecure passwords will be insecure no matter if it takes 0.0000005 seconds or 5 seconds to generate a hash for it. Specifically when there are some interesting problems with implementation at the software level.

link|improve this answer
10  
-1 for suggesting md5 and sha1 and for complete lack of understanding of the subject matter as evidenced by your answer. – jah Sep 19 '11 at 19:32
4  
-1 MD5, SHA1 or SHA256 whith salt is very bad. See codahale.com/how-to-safely-store-a-password – Jonas Nov 2 '11 at 12:06
2  
@Josh K: If you hash a strong password with MD5, it will be solved within seconds with todays computing power. MD5 is fast while good password algorithms like bcrypt is slow. – Jonas Nov 2 '11 at 15:41
2  
@JoshK: How long is it? I can only crack 20 billion md5 hashes per second with my computer. You can use Amazon cloud for 2$ per hour. MD5 and the SHA algorithms is optimized for speed. – Jonas Nov 2 '11 at 18:46
3  
@JoshK: With bcrypt you can do secure hashing for e.g. 5 chars, that will take a year to crack. With MD5 you need about 12+ chars for a single computer, but you can easily use a network with GPUs today. – Jonas Nov 2 '11 at 19:57
show 8 more comments
feedback

protected by Truth May 3 at 16:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.