Cryptography function that takes random bits and a string (typically a password) and uses a one-way hash to provide a new string that can be used for authentication without providing access to the original string. If a salt function uses enough random bits, the resulting string is generally ...
0
votes
1answer
81 views
storage of password in django and rainbow tables
In the django docs,it says django creates password as a string
algo$hash
where algo is pbkdf2 by default and hash is the sha256 hash of the password string .
In some articles, I read that a ...
0
votes
1answer
323 views
PHP storing password with blowfish & salt & pepper
I want to store secure user passwords in a MySQL database with PHP.
How can I make it better?
My Class:
private static $algo = '$2a';
private static $cost = '$10';
private static $pepper = ...
0
votes
1answer
81 views
AES Salting iterations, How many required?
I am trying to execute a simple Encrypt and Decrypt AES and I was trying to use salting. These values will be stored in the DB and retrieved from there. (I cannot use hashing) I am using static key ...
2
votes
5answers
81 views
Is salting a password pointless if someone gains access to the salt key? Off server salting?
Hearing about all the recent hacks at big tech firms, it made me wonder their use of password storage.
I know salting + hashing is accepted as being generally secure but ever example I've seen of ...
2
votes
2answers
165 views
Validate a password against an SSHA256 hash in PHP
For authentification with Dovecot, I use SSHA256 hashes but I have no clue how to validate a given password against the existing hash. The following PHP functions (found them in the web) are used to ...
0
votes
1answer
188 views
basic php pbkdf2 hashing
I am relatively new to php, and just beginning to grasp the point of salt when it comes to hashing passwords (I think?). Anyways, here's my problem...
Right now I have a mysql database with a ...
0
votes
1answer
110 views
Querystring with Hash Key to access search results
I need help with this asap (I was just asked to come up with a solution to this for tomorrow morning). The lead developer asked me to come up with a possible already existing solution to the following ...
-3
votes
1answer
48 views
How to Remove Salt from DB?
okay I am trying to make a log in form to my website in C# it has md5 + salt.. the problem is salt. md5 I can make work but salt just won't work. I made a php that gets the user name, user group id's ...
1
vote
2answers
292 views
Do I need base64 encode my salt (for hashing passwords)?
Excuse me for this very odd question. I understand the purpose of base64 encoding for transmitting data (i.e. MIME's Base64 encoding), but I don't know if I need to base64 encode my salts.
I wrote an ...
2
votes
4answers
125 views
Ultimate password salt
So recently I have been doing tons of research on how to secure passwords. I believe I understand the basics of it. As such I am attempting to write my own function to secure a password in php.
But ...
0
votes
3answers
189 views
which algorithm preferred for hashing passwords C#? [duplicate]
Possible Duplicate:
What algorithm should I use to hash passwords into my database?
I am new to this hashing on password. I read the hashing + salt make passwords really safe. But still ...
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? ...
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.
...
0
votes
1answer
125 views
Using BCrypt, and generating salts
SO.
I want to use BCrypt for my user authentication form.
I can register a user using the code
<?php
$salt = '$2a$07$R.gJb2U2N.FmZ4hPp1y2CN$';
crypt("secretpassword", $salt);
?>
Here ...
0
votes
1answer
131 views
authenticating user using pbkdf2 hash algorithm by https://defuse.ca/php-pbkdf2.htm
i am currently using md5 to authenticate users after they put their login email and password :
if($_POST['submit']=='Login')
{
// Checking whether the Login form has been submitted
// Will hold ...
1
vote
1answer
103 views
Security for a REST based API
I have been looking at techniques to secure an API for use in an android/iphone app or website application.
I have found one technique which I like but am unsure about if it is a good or what is wrong ...
0
votes
2answers
62 views
I can't get my php encryption to work
The script is surpose to encrypt a password so that it is much harder to use rainbowtables on it and there for people cannot hack the server so easily, but i cant seem to get it to work so i hope one ...
0
votes
0answers
195 views
Rails: BCrypt::Errors::InvalidSalt: invalid salt
Loosely following Ryan Bates's How I Test Railscast to implement sending an email confirmation token to users when they sign up.
class User < ActiveRecord::Base
has_secure_password
...
1
vote
1answer
32 views
Hash a value with itself as salt
I'm developing an application where users can search for other users that are already registered with their email. But because I don't want people to send me the addresses of their whole contact book ...
1
vote
2answers
322 views
Checking username and hashed/salted password in mysql database using PHP
When validating user logins, is it safe to first search for the username and THEN if found, retrieve the hashed password and salt and compare it with the user input?
Or, should the salt for the ...
0
votes
1answer
74 views
undefined POST and is my bcrypt system good?
So Ive been looking arround internet to bcrypt my passwords, I got this code together from youtube, Im not sure if thats what I need since this is my first time doing such a thing.
And also I get an ...
0
votes
1answer
113 views
generate salted wordpress hash
i'm new to wordpress field
So this is a salted wordpress hash :
$1$4Dad4CM6$I63lezzBCDjK9RhBwUgZi1
How can i generate hashes like that?
Thank you.
2
votes
2answers
220 views
should i use urandom or openssl_random_pseudo_bytes?
I am developing a site in php 5.4 and i was wondering which is better to use to gen a random salt for password security?
$salt = sha1(openssl_random_pseudo_bytes(23));
or
$seed = '';
$a = ...
2
votes
1answer
126 views
is Hash(password + salt) Fine [duplicate]
Possible Duplicate:
Secure hash and salt for PHP passwords
Assuming salt is s random, high entropy, long string, and hash is sha512 or bcrypt,
why is hash(password + perUserSalt) ...
0
votes
1answer
73 views
Memory limit reached while exectuting a PHP script
I am currently revising my register script to add PDO and bcrypt. However I run into an error I feel when I try to iterate my hash. I had the rounds initially set to 10000 as I seen tutorials with ...
2
votes
3answers
446 views
Login authorization, how to check if the password matches a SALT + HASH - PHP + MySQL
I am currently working on a school project and I have recently made no progress towards completing the login authorization. I am using a HASH and a SALT to register the new users. I can not find any ...
0
votes
1answer
62 views
Salting and hashing the user submitted data [duplicate]
Possible Duplicate:
Secure hash and salt for PHP passwords
I have:
$insert_query = 'insert into '.$this->tablename.'(
name,
email,
username,
password,
...
5
votes
3answers
127 views
Is it a good idea to update hash salt every login?
I want to make a secure website. Is updating the password salt every time a user logs in a good idea?
Edit: I additionally use a global salt, which is hard coded.
0
votes
1answer
189 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 ...
1
vote
2answers
151 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 ...
-1
votes
1answer
214 views
Issue With PHP, MySQLi Login Application [duplicate]
Possible Duplicate:
How do you use bcrypt for hashing passwords in PHP?
I am trying to create a secure login app using php and MySQLi by following this tutorial: Link To Tutorial
The ...
0
votes
1answer
165 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
1answer
264 views
SHA-256 encryption wrong result in Android
I am trying to encrypt 12345 using 1111 as salt using SHA-256 encoding and the answer I get is: 010def5ed854d162aa19309479f3ca44dc7563232ff072d1c87bd85943d0e930
which is not same as the value returned ...
1
vote
1answer
80 views
Algorithm for storing and comparing hashes in 2048bits + salt
How to implement an algorithm for storing and comparing hashes in 2048bits for passwords with random salt for each password with PHP?
EDIT 1:
I guess I was not clear enough in my question. What I ...
0
votes
1answer
31 views
How to encrypt user data while keeping it viewable in site manager?
I am building a web app and want to ensure that we go about encrypting user data the right way.
This data is not highly sensitive (like medical records or CC numbers) but I think it should be stored ...
0
votes
2answers
151 views
Why do salts stop rainbow tables? [duplicate]
Possible Duplicate:
How does password salt help against a rainbow table attack?
Before you mention it, I already read this question. I didn't follow.
Here's my understand of salts/rainbow ...
0
votes
3answers
141 views
how can I protect against capture during encryption/salt for php ajax login
If a password is encrypted before ajax, what is to stop a hacker from capturing the encrypted password and using it to log in?
Should a unique salt be sent from the backend beforehand? Wouldn't a ...
0
votes
1answer
60 views
What size should I use in a CreateSalt class? [duplicate]
Possible Duplicate:
What is the optimal length for user password salt?
What size should I use in a CreateSalt class?
private static string CreateSalt(int size)
1
vote
2answers
756 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 ...
0
votes
2answers
82 views
AES decryption is always null
I tried using salt to decrypt a AES encrypted message but it always returns null value. Can anyone look at it where am i doing wrong?
public static String decryptMessage(String encryptedMessage, ...
-1
votes
2answers
83 views
Using Salt To Encrypt Password PHP
Here is my code,
<?php
function($string){
$salt = "@x5v";
$hash = sha1(md5($salt.$string)).md5($string).sha1(md5($string));
return $hash;
}
?>
<?php
...
7
votes
10answers
295 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 ...
1
vote
2answers
90 views
Am I going the right way to make login system secure with this simple password salting?
I have two fields in login table
password
salt
And I have this little function to generate salt
function random_salt($h_algo="sha512"){
$salt1=uniqid(rand(),TRUE);
...
0
votes
1answer
364 views
Symfony 2 using salt login always returns Bad credentials
if I'am using salt to decode my password using, the login always returns "Bad credentials".
I'am using Fixture to create some testdata:
public function load(ObjectManager $manager)
{
...
2
votes
2answers
570 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 ...
0
votes
2answers
240 views
PHP mcrypt_get_iv_size () for Salt Size Generation
I am writing a PHP script to authenticate users. I want to use SHA512 for the hash and use a salt to prepend to the password. To generate the salt, I want to use mcrypt_create_iv. But first, I must ...
1
vote
4answers
239 views
how to encrypt password at client side when implemented MD5halsh salted algorithm on server side
I have implemented an md5 hash salted algorithm.
Using this algorithm I have saved the hashed password and salt value to the database.
then on login page retrieved the salt value of login user, get ...
0
votes
1answer
208 views
Generate password_hash which matches Magento Go API
I am trying to authenticate a user through the Magento Go SOAP API and having problems generating a matching hash. According to the docs the password_hash contains password:salt however when I md5 ...
0
votes
3answers
120 views
Multiple Salts to protect passwords
If you use a salt before hashing a password - it will make the hash more secure. It makes sense, because rainbow table attacks become much more difficult (impossible?).
What if you use multiple ...
10
votes
6answers
540 views
Salt and passwords [duplicate]
Possible Duplicate:
Secure hash and salt for PHP passwords
For my passwords should I use salt like this (the salt will be unique to each user and not stored directly with the password)...
...



