Tagged Questions
0
votes
1answer
70 views
Unique generated SALT for each user?
I'd like to ask if it's possible to generate a unique salt for each user and then hash it like
sha1(sha1($password . $salt))
so the $salt is a randomly generated string?.
If yes, how would I encrypt ...
-6
votes
1answer
67 views
salt sha1 approach [closed]
I am working on a new website that will work in conjunction with a remote server of mine. as im writing the php code i have come into a snag. what would be the best approach with having a user login/ ...
1
vote
1answer
73 views
Migrate password Symfony2 to CodeIgniter
I am migrating a project in Symfony to CodeIgniter. I have a problem with password user: I don't know how to create the same password in Codeigniter.
Example with the password is : aze. In the ...
0
votes
1answer
187 views
Hashing and salting in a PDO prepared statement
Can someone show me the proper format to use for hashing and salting in a PDO prepared statement? I'm switching from php and trying to get this to work in a simple INSERT statement before worrying ...
2
votes
2answers
566 views
Storing passwords with sha1 and salt
I have a simple registration script done in php and I was just curious if the way I am doing it is secure enough to store user passwords. I am generating a 32bit random salt and appending it to an ...
4
votes
2answers
328 views
Authenticating user logins from sha1 salted passwords
I have a very simple login/user registration script that stores passwords using sha1 and salt. I have the passwords and user creation working fine and storing everything in the database just fine, but ...
0
votes
1answer
39 views
User authentication failure /w Hash
And I need to secure some area's on my web store for admin use.
The problem is the authentication of the user: the salt + hash is failing.
This is my code for creating a password (using PHP5.x):
...
0
votes
3answers
139 views
sha1 + salt encyption fails in php
I am trying to secure a password with sha1 hashing to a saltMe() function but the ectrypted password ends up the same no matter what I type in the password field.
This might lead to a security ...
0
votes
3answers
1k views
How to change SHA1 and SALT encrypted passwords in table
I have table in mysql which contain fields id, username, password and salt:
Example:
id : 1
username : admin
password : 11ca8949f9462890f2535c9a43ac52b8c10a9342
salt : ...
0
votes
1answer
446 views
AES Encryption using IV,Salt,RFC2898 iteration, Key Generation using SHA1 algorithm in iPhone
I am here again with the problem related AES Encryption. The problem is I need to encrypt the string using AES encryption technique with Intialization Vector, Salt, RFC2898 iteration and Generate a ...
2
votes
2answers
285 views
Confused about salting (Cryptography)? [closed]
I'm a newb at this so this question is prob really easy. I just don't quite understand salting.
Without salting and with sha1 you can hash a password to be sha1('password') and to verify a user you ...
1
vote
3answers
593 views
Secure way of exchanging email addresses (hashing) to allow matching for overlap on another list, but not reveal those for which there is no overlap?
I'm with an organization (Company A) that has a large email list. I'm sending a 10,000 email subset of this list to another organization (Company B) to test for overlap (discover which email ...
5
votes
1answer
678 views
What is the most appropriate use of StandardPasswordEncoder for salting passwords in spring security 3.1?
I would like to add password salting to a site I am working on, and I discovered that Spring Security 3.1 has some new features to make this very easy to do.
I have a question about the ...
0
votes
1answer
637 views
Password Encription (SHA1) by Oracle Weblogic 10.3.2
Weblogic 10.3.2 uses SHA-1 (and others) for pass encryption. For example the following password:
abcdefg
with SHA-1 encryption results:
teshjSf9GOUIvRHljjMafld8YsWTlQ4=
I have tried ...
0
votes
1answer
398 views
Recommendations for encrypted password and email retrieval
I just finished encrypting the passwords in my database using a salted sha1. Naturally I'll need to implement a forgot password link ( email as well ). I have make shift versions of those right now ...
2
votes
3answers
6k views
What is “salt” when relating to MYSQL sha1?
What is "salt" when relating to MYSQL sha1? I have no idea what salt is when relating to sha1 password encryptions? Can someone please explain what it is?
1
vote
1answer
337 views
Please quickly check this PHP + SALT implementation - does not work?
Building on tutorials out there to implement a basic user sign up + log in system with salt. At the moment I'm using this for the sign up stage:
define('SALT_LENGTH', 9);
function ...
5
votes
3answers
430 views
Can someone explain how salts help when storing hashed passwords?
I am having difficulty understanding how a salt which is appended to a hash helps improve the security when a database of passwords or other important information is compromised.
If the salt is, for ...
2
votes
2answers
367 views
SHA1 Password returns as cleartext after DB query
I have a SHA1 password and PasswordSalt in my aspnet_Membership table.
but, when I run a query from the server (a Sql Query), the reader reveals
that the pass has returned as its cleartext ...
1
vote
3answers
3k views
create random sha1 salt with javascript
can anyone recommend a good method to create a sha1 salt using javascript ?
0
votes
4answers
5k views
SHA salt in MySQL query
I am setting a cookie. Something like:
$_COOKIE['test'] = SHA1('124'.'mysalt');
Now 124 is my id which I want. So in my MySQL table, I am trying to run a query like:
$sql = ("SELECT * FROM users ...
