Tagged Questions
7
votes
2answers
314 views
php salt my passwords per user sha512 - am I doing this right?
I'm trying to correctly do a per user and site wide salt for my passwords. Here's what I've got:
require('../../salt.php'); //this is above the web root and provides $salt variable
$pw = ...
3
votes
3answers
982 views
How insecure is a salted SHA1 compared to a salted SHA512
SHA512 is more complex than SHA1, but how much security am I losing by hashing a salted password with SHA1 compared to hashing it with 512? in terms of the time it would take for someone who has the ...
2
votes
2answers
395 views
How can I reproduce a SHA512 hash in C# that fits the PHP SHA512?
The question is pretty much self-explanatory. I Googled many sites, many methods, tried many encodings, but I can't get it to match.
I'm trying to make the string "asdasd" match. ...
1
vote
4answers
192 views
Ruby sha512 password retrieval in php
(Updated due to some confusion over my question) We use this method to generate a digested_password, which is saved to our database for later lookup. When we authenticate a user to our application, ...
1
vote
1answer
752 views
Ruby password SHA512 hash replication using PHP
is there any way I can reproduce this ruby function:
def Password.hash(password,salt)
Digest::SHA512.hexdigest("#{password}:#{salt}")
end
In php.
Cheers
0
votes
1answer
37 views
How to convert php crypt function (SHA512) to ruby?
note: i am not looking for workaround, i am looking for a plain ruby solution!
this question is the similar to this question, but it isn't answerd, its just a workaround to a shell commando there.
i ...
0
votes
3answers
153 views
Php Login / Mysql checking against mysql is not working with SHA512
GOAL: Trying to create a login. The registration page uses this to create the username and password based on input:
Register
<?php
$host="localhost"; // Host name
$username="root"; // Mysql ...
0
votes
2answers
214 views
PHP SHA-512 to Python+C SHA-512
I am working on a website for a game. The accounts are created via the php based website, and the game login server is being prototyped in Python, and will be finalized in C. The problem I am having ...
0
votes
1answer
463 views
How to use mcrypt similar to crypt() in php 5.2
I have an app that runs on php 5.3 which stores passwords using PHP's crypt() function. However the hashing type (SHA 512) used is not available by default on one of the servers I'm now using which ...
0
votes
3answers
382 views
Use of undefined constant CRYPT_SHA512
I use a php script that hashes passwords using php's crypt and uses SHA512, however when I try to check if SHA512 is set I get the above error. Of course I know WHY I get this error.. php is missing ...