In what are the ways you can encrypt the password ?
Answers were Sorted based on User's Feedback
Answer / padmavathy
using old password, password, MD5. These are some ways to
encrypt passwords
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / asha banu
Hi,
<?php
$password = crypt('mypassword');
if(crypt($user_input, $password)==$password)
{
echo "Password verified!";
}
?>
this is an example to encrypt the password. There is no
method for decrypt.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ks.tarun
with md5() function
with base64_encode() function..
but in base64_encode, it will take 33% more space then
original data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Is there any way to call a JAVASCRIPT function in PHP in AJAX
How do you define a constant?
What is api laravel?
Name the Functions in IMAP, POP3 AND LDAP?
Why do we show php code in browser?
What language is php based on?
What is the $_ server php_self variable?
What is php session id?
How to differentiate isset and empty
6 Answers A1 Technology, Dass Infotech, Microface,
What is whitespace in html?
How to get the http request in php?
What is difference between strstr() and stristr()?