Tagged Questions
The saltedhash tag has no wiki summary.
18
votes
7answers
3k views
What exactly is a rainbow attack?
I was reading a few articles on salts and password hashes and a few people were mentioning rainbow attacks. What exactly is a rainbow attack and what are the best methods to prevent it?
6
votes
4answers
3k views
Hashing in SHA512 using a salt? - Python
I have been looking through ths hashlib documentation but haven't found anything talking about using salt when hashing data.
Help would be great.
5
votes
6answers
436 views
Salting passwords 101
Could someone please help me understand how salting works?
So far I understand the following:
Validate password
Generate a random string
Hash the password and the random string and concat them, ...
4
votes
2answers
237 views
Do I change salt value when changing a user password?
Suppose I store a random salt value for each user. Do I have to generate a new salt value when that user password is changed or do I use the same value for the whole lifetime of that user account?
4
votes
4answers
422 views
What is the purpose of the “salt” when hashing?
Ok, I’m trying to understand the reason to use salt.
When a user registers I generate a unique salt for him/her that I store in DB. Then I hash it and the password with SHA1. And when he/she is ...
2
votes
4answers
43 views
How to design system to allow migration of encryption?
I want to set up a system where I am allow to migrate encrypted password (hash password), from one system to another. How would i do this?
Say 2 month down the line, i found a encryption that is 10 ...
2
votes
0answers
120 views
Pure-ftpd and Postgreql Auth with password salt
I've recently begun the task of setting up an PureFTP server. At work we use Postgresql 8.4. The schema essentially boils down to,
username text
password character(40)
password_salt ...
2
votes
2answers
165 views
Do I need to Salt and Hash a randomly generated token?
I'm using Adam Griffiths's Authentication Library for CodeIgniter and I'm tweaking the usermodel.
I came across a generate function that he uses to generate tokens.
His preferred approach is to ...
1
vote
3answers
100 views
Good secure way to remember a user checkbox
I have a login page which asks for a username and password. This page has a checkbox "Remember Me".
Authentication is: For the username provided, convert the provided password to a hash using the ...
1
vote
2answers
94 views
How does Unix SALT help protect passwords?
I was in class the other day and we were talking about Unix SALT and how it makes the passwords much harder to guess. My issue is that the SALT is stored in plaintext right next to the hashed ...
1
vote
1answer
130 views
How large should my password salt be? [closed]
Possible Duplicate:
What is the optimal length for user password salt?
I have a database like below:
create table user (id int primary key auto increment,
username varchar(64),
...
1
vote
2answers
224 views
Hashing and Salting Passwords with Spring Security 3
How can I hash passwords and salt them with Spring Security 3?
1
vote
2answers
81 views
Hash from “email+salt ” as a token to verify email
I'm verifying user email address.
The way most people tell is to create some unique token store it in db and
send to user.
I'm doing it with just hashing (sha256) email addres with sitewide salt
...
1
vote
3answers
73 views
How to recover a password forgotten by the user if the password is saltedhash?
I just learned to use salt and hash to secure the passwords in my database. Now, I need to create a module that will allow the user to recover the password if they forgot it. How can I do that if the ...
1
vote
1answer
127 views
Accessing GPU through Java for Salted Hashing
I'm looking to write a program that can do some salted (MD5) hashing for me. To reduce the impact on my system, and increase the speed, I want to run the calculations through the GPU. So I have a few ...
1
vote
1answer
383 views
Trying to understand salting and hashing passwords in Ruby on Rails
I'm walking through Michael Hartl's book (awesome, free resource, btw, thanks Michael!) and I have a question about salting and hashing passwords. The point of salting a password is to prevent a ...
1
vote
8answers
679 views
hash(hash()) vs salted hash
Since the introduction of Rainbow tables, and using only hashed passwords (e.x: MD5) to stored passwords in database is not the best secured way.
When people talk about salted hashes, the always use ...
0
votes
2answers
29 views
Spring security password hash + salt
I am working with a legacy application that stored passwords in plaintext. I have ported the application to spring 3 mvc + security. I have also successfully gotten spring security handling the ...
0
votes
2answers
85 views
Create Random Integer Based on Id in Ruby
I have a scenario where I need to generate 4 digit confirmation codes for individual orders. I don't want to just do random codes due to the off chance that two exact codes would be generated near ...
0
votes
2answers
84 views
encrypting password: when it is too much?
I am updating my helper functions library. I am wondering whether it is too much of salt in the password encryption?
Is there any difference between:
mb_substr(sha1($str . AY_HASH), 5, 10) . ...
0
votes
4answers
233 views
Forgot password page, but passwords are hashed
I need to implement a Forgot Password page, but my passwords are salted & hashed so I can't retrieve them conventionally. My idea was to do the following:
When a user clicks the Forgot
Password ...
-1
votes
2answers
60 views
salt and hash encryption/decryption for links
ok, so i have some links that will be generated for some ads on my website via php. Now the problem i have is simply i understand how md5 works and it's not an encryption and it can not be re-rendered ...