1
vote
1answer
25 views

bcrypt and randomly generated salts

So I was experimenting with bcrypt. I have a class(shown below, which I got from http://www.firedartstudios.com/articles/read/php-security-how-to-safely-store-your-passwords) in which there are 3 ...
0
votes
1answer
70 views

How secure is storing passwords with a salt and crypt()? [duplicate]

Coding an application that needs to store user's passwords for login. At the moment, I am using the following code: <?php $password = $_GET['password']; $salt = "pepper"; $password = ...
0
votes
0answers
18 views

I want to learn how a salt value in unix genereated? [duplicate]

Possible Duplicate: How to automatically generate salt for crypt method with blowfish I want to understand someting. In unix machine $hash$salt$passwd$ in there how a salt value genereated? ...
1
vote
2answers
152 views

In Spring Security, how does a random salt get properly generated during password comparison?

I'm using Spring security 3.1.1.RELEASE. I'm using the StandardPasswordEncoder.encode(password) function to encrypt my user passwords, which relies on a random salt being generated. From the Spring ...
0
votes
1answer
167 views

Find if correct password with hash and random salt

I have a database with users and I want to have a random salt for each user that is saved in the column Salt and a hash of their salt+password in the field password. I can insert them like this: ...
1
vote
2answers
761 views

php encrypt/decrypt function using salt - how to?

I am using php for a basic application to login into the system, be able to edit account information, and delete account. I have a mysql database. I need to encrypt/decrypt password using salt. How ...
7
votes
10answers
298 views

Validate a salted hash

I am new to C# and this is my first question here so I apologize in advance for any faux pas. Context: When a user registers I call the CreateSaltedHash() method and pass it the user inputted ...
6
votes
3answers
407 views

Creating glibc 2.7 style Sha-512 crypt hashes in Perl

So, I have a website that reads/verifies (and writes) password hashes from the database, and I have something that makes SHA-512 style password hashes for that, ones that look like: ...
-1
votes
2answers
647 views

howto encrypt passwords to the database using the Secured - Security.Authenticato

Im trying to save my passwords with some kind of security into the database. What is the best way of doing this with the play framework? Do I encrypt the string in javascript? Wouldnt have thought ...
2
votes
1answer
325 views

Spring Security 3 + Random Salt

So I understand that you can check a password in Spring Security with salt based on a userDetail property and then hash it to compare to a hash in the database, however what if the salt used when ...
0
votes
1answer
466 views

Java library for multiple different types of password encryption

I'm looking for a library (or preferably built into java) that will able to take a password and it's hash, determine what type of encryption was used and validate the password. Essentially the java ...