2
votes
1answer
94 views

Crypt returning same hash for two different (similar) passwords

I have an issue using crypt() where if a user has a password (password1 in this example), and they change it to password2, the hashing returns the same result. You can test that here: ...
0
votes
1answer
322 views

PHP storing password with blowfish & salt & pepper

I want to store secure user passwords in a MySQL database with PHP. How can I make it better? My Class: private static $algo = '$2a'; private static $cost = '$10'; private static $pepper = ...
1
vote
2answers
287 views

Do I need base64 encode my salt (for hashing passwords)?

Excuse me for this very odd question. I understand the purpose of base64 encoding for transmitting data (i.e. MIME's Base64 encoding), but I don't know if I need to base64 encode my salts. I wrote an ...
0
votes
1answer
74 views

undefined POST and is my bcrypt system good?

So Ive been looking arround internet to bcrypt my passwords, I got this code together from youtube, Im not sure if thats what I need since this is my first time doing such a thing. And also I get an ...
0
votes
2answers
238 views

PHP mcrypt_get_iv_size () for Salt Size Generation

I am writing a PHP script to authenticate users. I want to use SHA512 for the hash and use a salt to prepend to the password. To generate the salt, I want to use mcrypt_create_iv. But first, I must ...
0
votes
1answer
330 views

Why is crypt() returning different hashes with the same salt?

public static function blowfish($password, $storedpass = false) { //if encrypted data is passed, check it against input ($info) if ($storedpass) { if (substr($storedpass, 0, ...
1
vote
2answers
274 views

PHP crypt function password encoding

The following code returns the same encrypted password whichever way round. Why and how do we stop this. $pwd = 'shits8888'; $salt = '50153fc193af9'; echo crypt($pwd,$salt) Obviously something is ...
0
votes
1answer
226 views

different encryptions with crypt. what format should the salt be etc

I am building my classes for development and am working on an encryption class. I have been reading up on php's crypt function and the different encryption types but a few areas have been vaguely ...
1
vote
2answers
777 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 ...
0
votes
1answer
383 views

How do I get OpenSSL style salted MD5 in Ruby?

I'm talking about this: $ openssl passwd -1 -salt thesalt thepassword $1$thesalt$HAWpBmvUCutuyTS4JwevI. In PHP it would look like this: crypt('thepassword', ('$1$'.'thesalt')); # this gives the ...
1
vote
2answers
102 views

Why should't I use an encryption salt I enter myself and use a function to randomize a salt for me?

I am just typing a salt and on php documentations, people always use some random variable function. What is the disadvantage of typing a salt instead of generating it?
0
votes
2answers
661 views

clarification for crypt SHA-512 algorithm (c#)

EDIT: Sorry I forgot to mention, I'm not using the implemented sha512 crypt because as far as I can tell it doesn't involve a salt value or a specified number of rounds to compute the hash with. Okay ...
2
votes
1answer
950 views

How to create md5 hash as the crypt function generates with a md5 salt using the md5 function, not the crypt function?

I prefer using crypt function in php for password encryption and other one way encryption requirements. Because I can use any supported encryption algorithm, by changing the salt and there are few ...
22
votes
4answers
7k views

Why does crypt/blowfish generate the same hash with two different salts?

This question has to do with PHP's implementation of crypt(). For this question, the first 7 characters of the salt are not counted, so a salt '$2a$07$a' would be said to have a length of 1, as it is ...
14
votes
1answer
6k views

What is the correct format for a blowfish salt using PHP's crypt?

I have read the information provided on the PHP Manual Entry for crypt(), but I find myself still unsure of the format for a salt to trigger the Blowfish algorithm. According manual entry, I should ...