$decrypt » History » Revision 4
Revision 3 (Per Amundsen, 08/12/2015 06:44 PM) → Revision 4/9 (Per Amundsen, 09/06/2016 02:05 AM)
_Added in 1.9.0_
*$decrypt(text, password)*
Decrypts a blowfish text, encrypted with password.
_EBC mode only._
_See also [[$decrypt]]._
*Parameters*
text - Text to decrypt.
password - Password to decrypt with.
*Example*
<pre>
; Create a variable and encrypt text "Hello World" with password "test".
var %text $encrypt(Hello World, test)
; Decrypt the text and print it.
echo -ag $decrypt(%text, test)
</pre>