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 ...
1
vote
1answer
23 views
bcrypt and randomly generated salts
So I was experimenting with bcrypt. I have a class(shown below, which I got from http://www.firedartstudios.com/articles/read/php-security-how-to-safely-store-your-passwords) in which there are 3 ...
4
votes
5answers
1k views
Email address as password salt?
Is it a bad idea to use an email address as the salt for a password?
0
votes
2answers
54 views
“Official statement” on php.net : CRYPT_BLOWFISH is strongest hash algorithm. Why? [closed]
According to the [early] doc pages of the new PHP 5.5 password hashing/encrypting API the used algorithm CRYPT_BLOWFISH is "strongest algorithm currently supported by PHP" (please do a full text ...
0
votes
1answer
25 views
PDO Fetching Bcrypted password?
I have been a lot of troubles with my code since I first started learning something about hashing and salting passwords. First, I learn how to "hash" passwords with MD5 (Yeah, don't do that anymore), ...
1
vote
0answers
21 views
Symfony2 version 2.0.23, login with users from database always return: 'The presented password is invalid'
I'm trying to set up 2 firewall with 2 different providers and encoders in my security.yml that looks like this:
security:
encoders:
Devsign\UserBundle\Entity\AgentUser:
...
0
votes
3answers
1k views
Best practice for hashing passwords - SHA256 or SHA512?
I am currently using SHA256 with a salt to hash my passwords. Is it better to continue using SHA256 or should I change to SHA512?
0
votes
1answer
51 views
php mysql generate,store and match password and salt [closed]
I have a file named pbkdf2.php.
<?php
/*
* Password hashing with PBKDF2.
* Author: havoc AT defuse.ca
* www: https://defuse.ca/php-pbkdf2.htm
*/
// These constants may be changed without ...
-1
votes
1answer
30 views
Looking for a obj-c equivalent of this openSSL command [closed]
I am looking for obj-c code that is equivalent to this command
openssl enc -aes-128-cbc -k secret -P -md sha1
Once you type the above in command you get this output
salt=538C5F5ECAB7BFA2
...
-1
votes
0answers
19 views
Generate .key file using salt,key & iv
By executing this command:
openssl enc -aes-128-cbc -k secret -P -md sha1
I got:
salt = 705760957AE3FF9B
key = BB7A9DFE339E0187CD6255614CB5C584
iv = 8E113F25E75E840A8A8377A19FFC5CF4
Anybody ...
8
votes
5answers
6k views
What is SALT and how do i use it?
I have been searching around and i am still unsure of what a salt is and how to use/implement it. Sorry for the noobish question, i am self learning php.
-2
votes
2answers
29 views
Salt with using Mcrypt
I'm trying to generate salt using Mcrypt's mcrypt_create_iv(), but it doesn't seems to work and I'm getting errors.
Here is my code:
<?php
$salt= substr(mcrypt_create_iv(16, ...
0
votes
0answers
19 views
JBoss salted DatabaseServerLoginModule on AS 7.1
I'm trying to set up a secure login for my application.
To achieve this I wanted to salt my hash and maybe use an iteration count.
The official forums don't seem to answer that so I was wondering how ...
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
0answers
20 views
Salty Vagrant Master hostname: salt not found
I am trying to load my vagrant box with salt, asking it to install Apache.
I am using salty-vagrant in masterless mode.
The vagrant box get loaded but even though it stuck in the console with the ...
0
votes
1answer
69 views
How secure is storing passwords with a salt and crypt()? [duplicate]
Coding an application that needs to store user's passwords for login.
At the moment, I am using the following code:
<?php
$password = $_GET['password'];
$salt = "pepper";
$password = ...
100
votes
4answers
15k views
Where do you store your salt strings?
I've always used a proper per-entry salt string when hashing passwords for database storage. For my needs, storing the salt in the DB next to the hashed password has always worked fine.
However, ...
34
votes
2answers
13k views
Spring Security Custom Authentication and Password Encoding
Is there a tutorial out there or does anyone have pointers on how to do the following with Spring-Security?
Task:
I need to get the salt from my database for the authenticating username and use it ...
2
votes
1answer
46 views
Returning the salt value used in PHP's new password hashing API
I'm currently implementing a webapp that leverages PHP's new (to be released as part of v5.5) password handling API. I think it's really good but I'm wondering if anyone knows why password_get_info() ...
0
votes
1answer
29 views
How to configure 'cookie::$salt' in kohana
In this part of the Kohana documentation: (http://kohanaframework.org/3.1/guide/kohana/cookies) it says I can find
Cookie::$salt = 'foobar';
In bootstrap.php.
I don't see it there. Am I just ...
0
votes
1answer
50 views
Passwords MD5 encoded without salt. How to fix it?
I have a system where users can signup by Facebook or by a regular form. If user signup by Facebook, my system generates a random password, just to allow user to log-in without Facebook if he wants. ...
1
vote
3answers
77 views
Hashing and GetString/GetBytes issue
I have the below code to hash/store/retrieve data for passwords but my first unit test and it fails.
I beleive its the Encoding causing the problem because when GetBytes is called it returns ...
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
96 views
Login with custom Java EE Realm
I've created a Java EE Application with glassfish and netbeans.
I installed the custom flexible jdbc Realm from here.
I followed all the instructions and used the properties which are shown ...
0
votes
2answers
44 views
Does a salt have to be random? [duplicate]
I dont understand why the salt has to be randomly generated instead of just unique. For example, if you have a table with a user_id column (which is unique) couldnt you just tack that on to the ...
0
votes
1answer
61 views
Secure user login using java hash and salt
I have been trying for some time now but can't find an answer.... I am new to this topic so apologize if its a basic question...
How do I store user password securely and let user login?
so first ...
24
votes
4answers
11k views
Password hashing, salt and storage of hashed values
Suppose you were at liberty to decide how hashed passwords were to be stored in a DBMS. Are there obvious weaknesses in a scheme like this one?
To create the hash value stored in the DBMS, take:
A ...
0
votes
1answer
28 views
javascript behavior for '\352' decimal value
while checking login page, I found the following JS code
hexMD5('\232' + document.login.password.value + '\305\334\122\134\352');
so, I am asking about \352 will it occupy one byte and hence cause ...
0
votes
0answers
25 views
After Update Mcrypt_encode and mcrypt_decode do not decode corrertly :(
I use this functions to encrypt and decrypt passwords:
public function encrypt($TEXT,$SALT)
{
return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, substr($SALT,-32), $TEXT, ...
0
votes
0answers
120 views
Jasypt encrypted String not being able to decrypt on another machine
Our security department wants us to use 256-bit encryption to encrypt SSN, Names of Users etc, so we decided to go with JASYPT with the sample code below:
encryptor = new ...
4
votes
4answers
94 views
Junit test case
public static String generateSaltString() {
SecureRandom random = new SecureRandom();
byte[] salt = random.generateSeed(12);
return byteToBase64(salt);
}
Wondering how to write test ...
5
votes
1answer
784 views
Android: Do the random SALT bytes passed to AESObfuscator need to stay the same?
I'm implementing licensing in my Android application, and there is an array of 20 bytes that need to be passed into the AESObfuscator that is passed to the ServerManagedPolicy object. Can this array ...
0
votes
1answer
97 views
Using encryption and salt with Zend Framework 2's Authentication
I'm sort of a beginner, but I've been trying to learn to work with Zend Framework 2. I'm using a module I cloned from a public repo to authenticate users. It uses MD5, like so:
$dbAdapter = ...
1
vote
2answers
187 views
How do I encrypt a password in Wordpress using Wordpress salt?
I want to encrypt the password being sent into the database, with the standard Wordpress salt, just like Wordpress does it when you create a new user. I know I can find my salt in the wp-config.php. ...
1
vote
1answer
117 views
PHP - Sending password salt for hashing
My database stores unique salts for every user.
I'm creating a login script in php for an application where each user has it's own unique salt and here's how I plan to implement the login.
User ...
2
votes
2answers
168 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 ...
1
vote
2answers
148 views
Generating salt with specified bit length
I got a method that's supposed to generate a 64 byte (512 bit) salt for me:
public static string GenerateSalt()
{
var rngCrypto = new RNGCryptoServiceProvider();
byte[] saltBytes = new ...
1
vote
1answer
93 views
How to create two way encode/decode methods using use-specific key - PHP?
I need two functions/methods, one to encode, one to decode. This is not for storing passwords. Each user will have a specific key/salt to encode the data.
This is how I would like it to work:
...
1
vote
1answer
76 views
Behavior of PHP's password_hash()
I have been looking into the best way to encrypt passwords for use with my panel, I decided to go ahead and use BCRYPT, simply due to the cost of each encryption and the fact that it is generally ...
44
votes
4answers
32k views
Hash and salt passwords in C#
I was just going through one of DavidHayden's articles on Hashing User Passwords.
Really I can't get what he is trying to achieve.
Here is his code:
private static string CreateSalt(int size)
{
...
2
votes
2answers
78 views
Can I Expose The Hashed Salt + Password?
I am using a SHA-512 hash 1000 times on a salt + password. Is it safe to return that when querying information about a user or should I secure it and make it available only over HTTPS?
For example, ...
2
votes
5answers
74 views
Why is saving the salt for a hashed password in the same database secure? [duplicate]
I understand the need for hashing and salting, but I do not understand how storing the salt in the same (potentially compromised) database as the entire hash is secure. For example, a book I'm ...
11
votes
5answers
7k views
Am I using PHP's crypt() function correctly?
I've been using PHP's crypt() as a way to store and verify passwords in my database. I use hashing for other things, but crypt() for passwords. The documentation isn't that good and there seems to be ...
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 ...
3
votes
6answers
1k views
password security in PHP
What method would you call safest and most secure? I took these snippets off php.net. I'm just wondering because people posted their own and I just couldn't catch on to understand why some are the ...
1
vote
2answers
50 views
Per user salts and cross-user hash attacks
We hash users passwords (in a .net web application) with SHA2 & the following salts:
Application salt - stored outside the database (in our case the web applications web.config as an encrypted ...
0
votes
1answer
72 views
Why this MD5 result with Salt has “==” in the end of result string? [duplicate]
I have java code that use jasypt (Java Simplified Encryption) library:
StandardStringDigester digester = new StandardStringDigester();
digester.setAlgorithm("MD5");
...
1
vote
4answers
139 views
Problems with the salt and md5 encryption when login [closed]
I have managed to create a basic encryption system so when a user initially signs up to my website the password is stored in my database safely using salt, md5 and sha1.
The problem occurs now when ...
-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/ ...
0
votes
2answers
20 views
Create a cookie that is accesibe from JS only and no being sent with every request/
Is it possible to create a cookie that will stay available for the client's browser but won't be sent with the header of each request?
I want to send session salt via HTTPS and then let the user ...
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.







