cloudll Posted May 25, 2015 Share Posted May 25, 2015 Hey guys. I have been looking into encrypting a large string before entering it into my database and then decrypting it again in a secure user area. There seems to be a few ways to go around doing this, I was wondering if anyone could recommend which method/function works best? Thanks Link to comment https://forums.phpfreaks.com/topic/296485-best-method-to-encrypt-and-decrypt-a-string/ Share on other sites More sharing options...
fastsol Posted May 26, 2015 Share Posted May 26, 2015 What kind of information are you storing that you need to encrypt only to decrypt to show it to the same person that gave it to you? Some more details from you would give us a better comprehension of your goal and how to advise you. Link to comment https://forums.phpfreaks.com/topic/296485-best-method-to-encrypt-and-decrypt-a-string/#findComment-1512623 Share on other sites More sharing options...
cloudll Posted May 26, 2015 Author Share Posted May 26, 2015 It probably doesn't need to be encryped. I'm doing this more to learn more about it. Its not for a real project or anything. Link to comment https://forums.phpfreaks.com/topic/296485-best-method-to-encrypt-and-decrypt-a-string/#findComment-1512627 Share on other sites More sharing options...
jcbones Posted May 26, 2015 Share Posted May 26, 2015 Perhaps start with mcrypt_encrypt and mcrypt_decrypt. Link to comment https://forums.phpfreaks.com/topic/296485-best-method-to-encrypt-and-decrypt-a-string/#findComment-1512660 Share on other sites More sharing options...
Psycho Posted May 26, 2015 Share Posted May 26, 2015 You could also encrypt within the database as opposed to doing it with PHP: https://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html There are advantages and disadvanteges to both Link to comment https://forums.phpfreaks.com/topic/296485-best-method-to-encrypt-and-decrypt-a-string/#findComment-1512662 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.