Last active
April 16, 2018 13:10
-
-
Save harishkotra/f14f3f98ac57a12b79ca79129961a97b to your computer and use it in GitHub Desktop.
Decrypt CodeIgniter Password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $encrypted_password = 'ENCRYPTED_PASSWORD_HERE'; | |
| $key = 'KEY_FROM_CONFIG_FILE_HERE'; | |
| $decrypted_string = $this->encrypt->decode($encrypted_password, $key); | |
| echo $decrypted_string; | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment