Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. component {
  2.   remote string function getPass(required string text){
  3.     var result = "";
  4.       try{
  5.         result = decrypt(arguments.text, generate3DesKey("0yJ!@1$r8p0L@r1$6yJ!@1rj"),
  6.                          "DESede", "Base64");
  7.       }
  8.       catch(Any exception){
  9.         result = "Error, not encoded in a standard format";
  10.       }
  11.      
  12.       return result;
  13.  
  14.     }
  15.  
  16. }
  17.