Is there a way to encrypt text from php?
Answers were Sorted based on User's Feedback
Answer / mahidhar
yes,using base64_encode() using this function we encrypt
the text messsage.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / nirmit
MD5() is a one way hash funtion. Its returns a hash but the
hash cannot return the original string. Instead, AES_CRYPT
(), BASE64_ENCODE() can be used for encryption.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dinesh g
Can use CRIPT(), MD5(), SHA1(), SHA2xx() algorithms but
SHA2XX() algorithm is advisable since MD5 & SHA1 cause
security issue.
Is This Answer Correct ? | 0 Yes | 0 No |
How to call a php function from another php file?
Which is faster for or foreach?
How does integrate SSL certificate in websites and also how to generate CSR in Local machines? plese give some ideas ASAP.....
How are cookies created?
How to merge values of two arrays into a single array?
How to repeat a string to a specific number of times in php?
How can I prevent sql-injection in php?
What does csrf token mismatch mean?
Tell me what is the difference between exception::getmessage and exception::getline?
How break and continue while loop in php?
List some of the features of php7.
What enctype is required for file uploads to work?