Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
428 views

How to upgrade a password storage scheme (change hashing-algorithm)

I've been asked to implement some changes/updates to an intranet-site; make it 'future proof' as they call it. We found that the passwords are hashed using the MD5 algorithm. (the system has been ...
5
votes
6answers
219 views

is there a way to reverse a hash without rainbow tables? [closed]

Possible Duplicate: md5 decoding. How they do it? this page suggests that a hash algorithm like md5() and sha1() can be reversed because of the huge processing power that we have nowadays. ...
3
votes
5answers
6k views

Mysql password hashing method old vs new

I'm trying to connect to a mysql server at dreamhost from a php scrip located in a server at slicehost (two different hosting companies). I need to do this so I can transfer new data at slicehost to ...
2
votes
3answers
1k views

What function returns a Drupal-6-valid password hash?

I want to make a script to insert some 100 users into a Drupal 6 database - their username, mail and password hash. After reading about the PHP class that Drupal 6 uses, I'm not sure I can pull this ...
1
vote
1answer
55 views

How to replicate password hash for provided password and salt (PHP/MySQL)

Password needs to be matched by Password Hash which was originally created on a .NET platform and stored on MSSQL (so encryption is probably SHA1). Here is how MySQL table looks like: CREATE TABLE ...
1
vote
1answer
81 views

Microsoft Dynamics CRM - password hashing algorithm

I work at a University and our application for admissions is a product that is built on top of Microsoft Dynamics CRM 4.0. (The application is called 'Recruiter'.) There is a table with usernames ...
1
vote
2answers
259 views

What is the safest way to store a password using Code Igniter? (solved)

I am using Code Igniter for my current project. As of now, I am using MD5 for password hashing, but I have read at a lot of places, that it is not a good practice to do so. What should I go with? ...
1
vote
3answers
69 views

PHP rewriting password hashing function what algo to use?

I'm rewriting my password hashing function. It currently uses sha1. I'm thinking about using sha512. Am I right to think that sha512 is sha2? Is this currently the standard for hashing passwords ...
1
vote
3answers
810 views

ASP.NET: SHA1 + Salt Password Hashing on Multiple Servers

So, I am the approach David Hayden posted on his blog (http://davidhayden.com/blog/dave/archive/2004/02/16/157.aspx) to create a salt and hash the user's password by taking the user's raw password and ...
1
vote
3answers
1k views

how to use md5 encryption for password field in mysql database in coldfusion

i am implementing a application in which i have to insert encrypted password and retrieve decrypted password from mysql database using md5 encryption in coldfusion. how to use md5 encryption in ...
0
votes
1answer
128 views

PasswordHash not working with CodeIgniter

I have put the files I downloaded from http://www.openwall.com/phpass/ to application/libraries In my controller, I am using this code - $params = array( 'phpass_hash_strength' => 8, ...
0
votes
0answers
156 views

Hashing passwords with DatabaseServerLoginModule

I'm using JBoss 6 and postgresql, the password's been entered in the database using the MD5() function of postgresql. Logging in without setting a hashAlgorithm module option works fine, but as soon ...
0
votes
3answers
419 views

Password does not match with hash algorithm (SQL Server)

I got a problem with SQL Server. My Task is it to realize a simple SQL Serverbased usersystem with PHP. The databases are also used by a MMORPG so I am not allowed to change the database structure or ...