Tagged Questions
21
votes
13answers
25k views
What's the difference between SHA and MD5 (in PHP)?
When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
4
votes
3answers
789 views
Can you get this same Java SHA-1 in PHP please?
I find myself in a need to change website platforms from Java to PHP but I'd like to keep all my user's passwords...
I had this code do the password hashing prior to writting the hashed value as the ...
3
votes
2answers
765 views
How can I calculate the SHA-256 hash of a string in Android?
I'm trying to get the SHA256 of a string in Android.
Here is the PHP code that I want to match:
echo bin2hex(mhash(MHASH_SHA256,"asdf"));
//outputs ...
3
votes
1answer
76 views
Alphanumeric (sha1) Semaphore in PHP?
PHP's "shm_get" function requires an integer semaphore key, which I realise to be a restriction of the underlying OS.
I am using the "sha1" function to hash some user input and using the hash to ...
1
vote
3answers
219 views
sha('$password') return with empty set
I have two problems.
problem one:
I am trying to create a registeration form where users can register with my website.
when I run this mysql statement a get dublicate entry found error:
$sql "insert ...
1
vote
6answers
233 views
Check if string is a hash
I'm using SHA-512 to hash my passwords (with a salt ofcourse). I don't think that what I want is possible, but let's ask anyway.
Is there a way to check if a string is a SHA-512 (or another ...
0
votes
2answers
77 views
How to encrypt this file with PHP?
I have a php page (just one page - consist of security information and validation) that I want to create an encryption on it, actually in this case I don't have any DB to save data, so I must put the ...
0
votes
2answers
25 views
How to get SHA of file after upload in PHP
I have a site which copies a file from a URL to my sever. I need a way of getting a SHA of the file after it has been copied.
I was using @copy($url,$upload_path) to copy the file but this returns a ...
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
1answer
158 views
SHA512 in php - how? [closed]
Possible Duplicate:
SHA-512 library for PHP
I see the has() is only upto sha1. How to implement SHA512 properly with PHP, using codeignitor. Do i need an external library or is there ...