The saltedhash tag has no wiki summary.
0
votes
1answer
37 views
iOS App for emergency response - how to secure the data without a password?
I have a unique use case here: I need to enhance a stand-alone iPhone app "EmergencyResponse" (name changed for this post) that is used by at-risk patients. Patients/Caregivers setup the app with ...
0
votes
1answer
40 views
Salt Command for encrypting passwords isn't working
For our project we are trying to encrypt passwords using the salt command, but it doesn't seem to be working. this is what we have so far:
<html>
<?php
$con=msqli_connect('XXXX', ...
1
vote
2answers
84 views
Typo3 with login, salted and rsa
we have a Typo3 plattform that has fe_login, salted and rsa activated. When i create a FE User in BE and check the MySQL user has salted password. In fronend the user logs in with RSA, but the ...
0
votes
2answers
386 views
Decryption password using Salt in C#
Currently i am using salt to encrypt the password.
public static SaltedHash Create(string password)
{
string salt = _createSalt();
string hash = _calculateHash(salt, ...
0
votes
2answers
131 views
How to generate a random salt for hashing passwords [duplicate]
Possible Duplicate:
Secure hash and salt for PHP passwords
I want to generate a random salt and then store it along with the password in the user database. So something like this I think.
...
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 ...
0
votes
1answer
102 views
Spring security generate a salted hash for users from command line
How do you generate a salted hash for users in spring security 3x from a bash command line?
1
vote
1answer
43 views
Global site salt, is it worth it?
I'm making a user database and I was thinking about security and it just made me think, is it really worth it to have a site salt when I'm going to have unique user salts on everybody.
...
0
votes
1answer
457 views
Having trouble with apache shiro saltedauthentication.hashProvidedCredentials not given expected hash
This is the second time I'm using apache shiro in a project but the first time am salting the password.this time around i use apache shiro 1.2.0 . I'm using shiro in a web application using jsp, ...
0
votes
1answer
1k views
Understanding and cracking salted sha512 hashes
On Ubuntu 12.04 I created several users and passwords, then promptly proceeded to try to crack those passwords with John the ripper. One password is very strong, but the others are in my wordlists.
...
0
votes
1answer
127 views
how to authentificate user with salt passeword sha-1 with tomcat 7
I try to configure datasourceRealm using tomcat 7.0.x with user authentification data store in DataBase in two columns one with salt and another with hash. I don't know how to configure ...
2
votes
6answers
250 views
Hashing (with salts) Username and Password in php
I am creating a user login function but I've seen mixed views on the best way to do this.
Here's what I was thinking of doing...
Hashing the Username using 2 hashed salts which are based on ...
0
votes
2answers
269 views
Create a password encrypted and store it in sqlite to use in authentication
I have a WinForms application, with login form, and I want to store the username and password encrypted in a SQLite database. I saw that I can use salt and hash, but I don't know how to encrypt the ...
0
votes
4answers
428 views
PHP best way to salt a password in our time
How to make absolutely original salt for every user?
Is it better to use time() function in PHP?
0
votes
4answers
84 views
What is the best way to securely store password (hashes)
A lot of websites these days are hacked and the password hashes are stolen.
Even big websites like LinkedIn didn't store their passwords secure (just md5).
Now is my question, what is a secure enough ...
0
votes
0answers
297 views
LinkedIn lesson: What is the best way to store password?
This is not a new question. But as we known, LinkedIn has been hacked. And 6.5m unique hash password, no salted, are leaked on the Internet. The algorithm of hash password is SHA1.
Hashcat release a ...
2
votes
3answers
170 views
Validating passwords with random salts
I have been trying to learn about hashes and salts stored in a users table withing a mysql DB. I get through with storing them but can't seem to wrap my head around how to validate when the user logs ...
1
vote
1answer
215 views
Hashing using salt on android and iphone
I am developing an app on both android and iphone which requires encryption of some data.
I want to know is there any way to encrypt data producing same hash on both platform.
I have common salt, ...
0
votes
1answer
51 views
Should I send salt value to web browser to secure password
I have read about salted hash password technique to protect password from some attacks. https://www.owasp.org/index.php/Hashing_Java#Why_add_salt_.3F
But I have some confusing, should I send a salt ...
2
votes
9answers
282 views
why salt did not help when using dictionary attack
From this site http://codahale.com/how-to-safely-store-a-password/:
It’s important to note that salts are useless for preventing dictionary attacks or brute force attacks.
If salt is useless to ...
0
votes
2answers
2k 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 ...
2
votes
4answers
177 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 ...
-1
votes
2answers
310 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 ...
1
vote
3answers
503 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
517 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
381 views
How large should my password salt be? [duplicate]
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),
...
5
votes
3answers
3k views
Hashing and Salting Passwords with Spring Security 3
How can I hash passwords and salt them with Spring Security 3?
1
vote
2answers
594 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
...
2
votes
3answers
383 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 ...
5
votes
1answer
489 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 ...
0
votes
2answers
146 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
238 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) . ...
1
vote
1answer
269 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 ...
6
votes
2answers
844 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?
1
vote
4answers
903 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 ...
3
votes
1answer
2k 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 ...
2
votes
9answers
1k 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 ...
5
votes
6answers
776 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, ...
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.
2
votes
2answers
526 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 ...
5
votes
4answers
836 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 ...
23
votes
7answers
8k views
What exactly is a rainbow attack? [closed]
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?
