Tagged Questions
1
vote
4answers
631 views
Shall I need to use MD5 algorithm in both JavaScript and PHP for login authentication?
I have a login form with username and password. I post this form data to a PHP file. For security reasons I want to encrypt my password in the database and network. Now I have done now following ...
-6
votes
2answers
730 views
Is AES slower to encrypt than MD5?
Is this the right interperation of this diagram:
http://www.cryptopp.com/benchmarks.html
AES/CCM
MiB/Second:61
Cycles Per Byte:28.6
MD5
MiB/Second:255
Cycles Per Byte:6.8
And does that ...