How can we encrypt the username and password using PHP?

How can we encrypt the username and password using PHP?

View Answers

November 15, 2010 at 10:50 AM

Hi,

If you want to encrypt username and password in the php login then use md5() or sha1() methods. These methods are providing the best encryption in the php.

The process of using md5() is:

$encrypted_username=md5($username);
$encrypted_password=md5($password);

The process of using sha1() is:

$encrypted_username=sha1($username);
$encrypted_password=sha1($password);

Thanks









Related Tutorials/Questions & Answers:
Advertisements