Project

General

Profile

$decrypt » History » Revision 2

Revision 1 (Per Amundsen, 07/20/2014 08:28 AM) → Revision 2/9 (Per Amundsen, 07/20/2014 08:29 AM)

_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 a variable and encrypt text "Hello World" with password "test". 
 var %text $encrypt(Hello World, test) 

 ;Decrypt the text and print it. 
 echo //echo -ag $decrypt(%text, test) 
 </pre>