Encrypt and decrypt with CodeIgniter
Encryption and decryption functions are available in CodeIgniter by using the Encryption class. Of course you can always use PHP functions, but what I say is that CodeIgniter has a specific class for handling some encryption functions.
Everything is explained in the Encryption class, but the first thing you should do is configure your encryption key in config.php.
Then, you can start using for example $this->encrypt->encode() and $this->encrypt->decode().
If you need to handle passwords instead, I’d recommend to visit Handling Passwords in CodeIgniter, by Elliot.
Related searches:
- codeigniter encryption
- codeigniter encrypt
- encrypt codeigniter
- encryption codeigniter
- codeigniter encrypt decrypt
- codeigniter encrypt url
- encryption key codeigniter
- codeigniter decrypt
- codeigniter encryption key
- codeigniter encrypt password




