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 |
Name some of the functions in php.
What is the use of paypal in the e-commerece website?
What is difference between base_url and site_url?
How to calculate the length of a string?
How is session id stored in browser?
What is super () python?
What is get and post method in php?
What are the security measures we have to take for our site not to hack by others?
What is cookies? How to create cookies in php?
How we load all classes that placed in different directory in one php file , means how to do auto load classes.
How is it possible to parse a configuration file?
What is serialization / object serialization ?