$decrypt » History » Revision 3
Revision 2 (Per Amundsen, 07/20/2014 08:29 AM) → Revision 3/9 (Per Amundsen, 08/12/2015 06:44 PM)
_Added in 1.9.0_ *$decrypt(text, password)* Decrypts a blowfish text, encrypted with password. *Parameters* text - Text to decrypt. password - Password to decrypt with. *Example* <pre> ; Create ;Create a variable and encrypt text "Hello World" with password "test". var %text $encrypt(Hello World, test) ; Decrypt ;Decrypt the text and print it. echo -ag $decrypt(%text, test) </pre>