What are the strongest encryption/hashing functions? |
Hashing has nothing to do with encryption and CI_Encryption doesn't provide hashing. But to answer your question: bcrypt, scrypt and pbkdf2 are today's standards for password hashing. The first one is the most accessible and popular in the PHP world, just use the password hashing functions.
There's no "strongest" encryption, but AES-128 is a the de-facto standard everywhere (except maybe in Japan). It's also the default algorithm in CI_Encryption, so all you need is to use a strong key and encrypt()/decrypt() away. |
Messages In This Thread |
What are the strongest encryption/hashing functions? - by geekita - 03-06-2015, 02:18 PM
RE: What are the strongest encryption/hashing functions? - by Narf - 03-06-2015, 04:35 PM
RE: What are the strongest encryption/hashing functions? - by geekita - 03-07-2015, 05:37 AM
RE: What are the strongest encryption/hashing functions? - by Narf - 03-07-2015, 11:30 AM
RE: What are the strongest encryption/hashing functions? - by darrenbang - 08-13-2015, 01:17 AM
|