Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/e8993ffe51362fc957a2ada387dc6def to your computer and use it in GitHub Desktop.
Save trycf/e8993ffe51362fc957a2ada387dc6def 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, "LmlsdzZf6VzurgSYpHWb7A==", "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