Tagged Questions
0
votes
0answers
22 views
Validate/Generate Hash [duplicate]
Possible Duplicate:
How do you use bcrypt for hashing passwords in PHP?
Hello I am trying to use $mainpass = sha1 ( $salt . $password );
Read some articles suggesting scrypt and bcrypt and ...
0
votes
1answer
212 views
Sha256 + salt algorithem in windows phone 7
I want to encrypt my userid and password using SHA256 algorithm and salt key for sending to the server through a xml. How can I achieve this ?
I did a sample code with SHA256 and pasted bleow. How I ...
2
votes
2answers
166 views
Legacy app with md5 hashes: how to add salt and SHA1?
I've a legacy app where passwords are hashed using MD5 without salt. I'd like to switch to SHA1 with salt, but I'd like to keep current users' passwords.
My plan is to change hashing function to ...
0
votes
3answers
197 views
Proper way to use salt along with hashing
During a discussion with a couple of other people, I read the argument that
sha512(salt + username + password) is bad,
sha512(username + password) is worse and
sha512(password) is plain idiotic.
...
1
vote
3answers
202 views
Keeping password length uniform internally and keeping salt secret?
When storing passwords, it's been said that Salt doesn't need to be secret and it's only purpose is to keep all Hash unique. It's also said that limiting password length is not a good practice but ...
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?
2
votes
2answers
167 views
Hashing gone wrong
I'm using the same function to hash values for comparison during login as I am to hash the passwords when users register:
Public Shared Function Compute(ByVal text As String, ByVal algorithm As ...
1
vote
2answers
585 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
...
4
votes
1answer
200 views
Encryption: do I need to salt the key when not even storing it at all?
I searched all over the Net, including here on SO: There is a lot of discussion on the need to salt passwords before hashing and storing them.
In case the password is used to compute a key used for ...
9
votes
4answers
9k views
How long to brute force a salted SHA-512 hash? (salt provided)
Here is the algorithm in Java:
public String getHash(String password, String salt) throws Exception {
String input = password + salt;
MessageDigest md = MessageDigest.getInstance(SHA-512);
...
4
votes
2answers
2k views
Problems with Python MD5, SHA512 (+salt) encryption
I'm trying to understand how does Linux encrypt our password on the etc/shadow file, so I've dont a new virtual 'test' user to make some test:
user: newuser
password: usrpw123
Generated salt: ...
12
votes
5answers
9k 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.