Is there a way to encrypt text from php?

Answers were Sorted based on User's Feedback



Is there a way to encrypt text from php?..

Answer / mahidhar

yes,using base64_encode() using this function we encrypt
the text messsage.

Is This Answer Correct ?    3 Yes 0 No

Is there a way to encrypt text from php?..

Answer / mahidhar

using base64_encode() functions.

Is This Answer Correct ?    1 Yes 0 No

Is there a way to encrypt text from php?..

Answer / siva

using md5()

Is This Answer Correct ?    0 Yes 0 No

Is there a way to encrypt text from php?..

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

Is there a way to encrypt text from php?..

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

Post New Answer

More PHP Interview Questions

A process can run only in the background. State Whether True or False?

1 Answers  


How to invoke a user function?

1 Answers  


What is php resource type?

1 Answers  


Draw the architecture of Zend engine?

4 Answers  


Explain me is multiple inheritance supported in php?

1 Answers  


What is stripslashes php?

1 Answers  


what are the differences between php and perl

1 Answers   TCS,


what is variable scope, which variables are accessible from where and what are "undefined variable" errors?

1 Answers  


In how many ways we can retrieve the date in the result set of mysql using PHP?

5 Answers   Yahoo,


What are psrs?

1 Answers  


What is the difference between get and post method in php?

1 Answers  


What is new keyword in php?

1 Answers  


Categories