Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/b889b65060c3fc5d8c8032103a6a9ec1 to your computer and use it in GitHub Desktop.

Select an option

Save trycf/b889b65060c3fc5d8c8032103a6a9ec1 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
// Define the encryption key
var key = "your-secret-key";
// Encrypted string
var encryptedString = "00BBCE47C367526FE7B19BD5DA50489A7E6AD6B88752F565C3FD6CA5BAB25B9877C461BA44C54074";
var token = Decrypt(encryptedString, "rNQkUxfikwHOmX1Eo8kBmQ==", "BLOWFISH", "hex");
// Output the decrypted token
writeDump(token);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment