Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
print ' MD5: apple: ' . md5('apple');
print "\n";
print ' MD5: Apple: ' . md5('Apple');
print "\n";
print 'SHA1: apple: ' . sha1('apple');
print "\n";
print 'SHA1: Apple: ' . sha1('Apple');
?>
This raises a good point. However, this is not such a serious concern if you use a salted hash.jpadie said:the lack of 'security' that i would consider is simply that there are a lot of sites out there that are storing reverse md5 hashes whereas i have not seen so many that do the same for sha1.