Tagged Questions
-1
votes
2answers
46 views
“Official statement” on php.net : CRYPT_BLOWFISH is strongest hash algorithm. Why? [closed]
According to the [early] doc pages of the new PHP 5.5 password hashing/encrypting API the used algorithm CRYPT_BLOWFISH is "strongest algorithm currently supported by PHP" (please do a full text ...
1
vote
1answer
76 views
Behavior of PHP's password_hash()
I have been looking into the best way to encrypt passwords for use with my panel, I decided to go ahead and use BCRYPT, simply due to the cost of each encryption and the fact that it is generally ...
0
votes
1answer
125 views
Using BCrypt, and generating salts
SO.
I want to use BCrypt for my user authentication form.
I can register a user using the code
<?php
$salt = '$2a$07$R.gJb2U2N.FmZ4hPp1y2CN$';
crypt("secretpassword", $salt);
?>
Here ...
0
votes
0answers
197 views
Rails: BCrypt::Errors::InvalidSalt: invalid salt
Loosely following Ryan Bates's How I Test Railscast to implement sending an email confirmation token to users when they sign up.
class User < ActiveRecord::Base
has_secure_password
...
2
votes
1answer
126 views
is Hash(password + salt) Fine [duplicate]
Possible Duplicate:
Secure hash and salt for PHP passwords
Assuming salt is s random, high entropy, long string, and hash is sha512 or bcrypt,
why is hash(password + perUserSalt) ...
0
votes
1answer
73 views
Memory limit reached while exectuting a PHP script
I am currently revising my register script to add PDO and bcrypt. However I run into an error I feel when I try to iterate my hash. I had the rounds initially set to 10000 as I seen tutorials with ...
0
votes
3answers
66 views
How does service salt work? [closed]
I want to know how service salt works. I know how to bcrypt password and give each user an unique salt. But I heard there is also another layer you can add by having a service salt. I am just ...
3
votes
2answers
241 views
Explanation of bcrypt's functionality
I'm looking into hash and salting passwords using bcrypt in PHP.
Can someone explain to me why brcypt's use of "work" / "rounds" prevents attacks?
I've already read "How do you use bcrypt for hashing ...
5
votes
2answers
2k views
Web app passwords: bcrypt and SHA256 (and scrypt)
With all the recent (e.g. LinkedIn) discussions of passwords I'm looking at password hashing implementations. After two cups of coffee and a morning reading I'm no more a cryptographer than when I ...
1
vote
2answers
792 views
bcrypt with salt how?
I'm kind of new when it comes to security, I've been reading up on php crypt and searching for good advice though no one really goes into detail about "how" you go about doing it in the most effective ...
1
vote
3answers
495 views
Random salt + hashed pass or a random salt + crypt()'ed pass?
I'm trying to make a more or less secure login system for my site, I haven't had much time with securing things so I'm learning as I go along. Wanted to hear some views on which of the following is ...
4
votes
2answers
3k views
What is the safest way to store a password using Code Igniter? (solved)
I am using Code Igniter for my current project.
As of now, I am using MD5 for password hashing, but I have read at a lot of places, that it is not a good practice to do so.
What should I go with?
...
5
votes
1answer
2k views
Are bcrypt salts accessible separately?
When using has_secure_password in Rails 3.1, bcrypt randomly generates a salt for each user's password. Based on this response, I understand the salt is stored as part of the password hash. Is there a ...
20
votes
2answers
4k views
Why does BCrypt.net GenerateSalt(31) return straight away?
I stumbled across BCrypt.net after reading Jeff Atwood's post about storing passwords which led me to Thomas Ptacek's recommendation to use BCrypt to store passwords. Which finally led me to this C# ...
87
votes
1answer
11k views
Do I need to store the salt with bcrypt?
bCrypt's javadoc has this code for how to encrypt a password:
String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt());
To check whether a plaintext password matches one that has been ...

