Skip to content

Instantly share code, notes, and snippets.

@harishkotra
Last active April 16, 2018 13:10
Show Gist options
  • Save harishkotra/f14f3f98ac57a12b79ca79129961a97b to your computer and use it in GitHub Desktop.
Save harishkotra/f14f3f98ac57a12b79ca79129961a97b to your computer and use it in GitHub Desktop.
Decrypt CodeIgniter Password
<?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