Guest User

Untitled

a guest
Apr 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. $encrypted_password = 'ENCRYPTED_PASSWORD_HERE';
  4. $key = 'KEY_FROM_CONFIG_FILE_HERE';
  5.  
  6. $decrypted_string = $this->encrypt->decode($encrypted_password, $key);
  7. echo $decrypted_string;
  8.  
  9. ?>
Add Comment
Please, Sign In to add comment