Can someone tell me in really slow terms the difference between these 2 lines of PHP?
$hassh = base64_encode(sha1($word));
$hassh = hash(’sha1′, $word);
|
|
Can someone tell me in really slow terms the difference between these 2 lines of PHP?
|
||
|
|
|
|
Not sure what you mean by "different", but the first line :
gets you :
Where the second :
Gets you :
Gets you :
Excepts for this, those two lines, with the sha1 algorithm, get the same thing. Difference probably is that Oh, and, also : |
||||||||
|