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 |
How do you connet mysql database with php?
Write the statements that are used to connect php with mysql
What is php session id?
Which array function checks if the particular key exists in the array?
Where is the functions php in wordpress?
Tell me how stop the execution of a php scrip?
in PHP for pdf which library used?
What is the difference between $message and $$message?
What websites use php?
What are the steps involved to run php?
What enctype is required for file uploads to work?
In PHP, fgets() is used to read a file one line at a time. State Whether True or False?