Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
function decodeSecret($secret){ return base64_decode(strrev(hex2bin($secret))); } ..
Decoded Output download
The secret is:
Did this file decode correctly?
Original Code
function decodeSecret($secret){
return base64_decode(strrev(hex2bin($secret)));
}
print "The secret is: ";
print decodeSecret("3d3d516343746d4d6d6c315669563362");
print "\n";
Function Calls
| hex2bin | 1 |
| decodeSecret | 1 |
Stats
| MD5 | 0a760ca77b7a5c4012b0f856482fefa9 |
| Eval Count | 0 |
| Decode Time | 67 ms |