_Added in 1.9.0_ *$encrypt(text, password)* Encrypts a blowfish text using a password. _ECB mode only._ _See also [[$decrypt]]._ *Parameters* text - Text to encrypt. password - Password to encrypt with. *Example*
; 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)