Project

General

Profile

$encrypt » History » Revision 2

Revision 1 (Per Amundsen, 07/20/2014 08:30 AM) → Revision 2/10 (Per Amundsen, 08/12/2015 06:45 PM)

_Added in 1.9.0_ 

 *$encrypt(text, password)* 

 Encrypts a blowfish text using a password. 

 *Parameters* 

 text - Text to encrypt. 
 password - Password to encrypt 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>