$encrypt » History » Version 3
  Per Amundsen, 09/06/2016 02:05 AM 
  
| 1 | 1 | Per Amundsen | _Added in 1.9.0_ | 
|---|---|---|---|
| 2 | |||
| 3 | *$encrypt(text, password)* | ||
| 4 | |||
| 5 | Encrypts a blowfish text using a password. | ||
| 6 | |||
| 7 | 3 | Per Amundsen | _EBC mode only._ | 
| 8 | |||
| 9 | _See also [[$decrypt]]._ | ||
| 10 | |||
| 11 | 1 | Per Amundsen | *Parameters* | 
| 12 | |||
| 13 | text - Text to encrypt. | ||
| 14 | password - Password to encrypt with. | ||
| 15 | |||
| 16 | *Example* | ||
| 17 | |||
| 18 | <pre> | ||
| 19 | 2 | Per Amundsen | ; Create a variable and encrypt text "Hello World" with password "test". | 
| 20 | 1 | Per Amundsen | var %text $encrypt(Hello World, test) | 
| 21 | |||
| 22 | 2 | Per Amundsen | ; Decrypt the text and print it. | 
| 23 | 1 | Per Amundsen | echo -ag $decrypt(%text, test) | 
| 24 | </pre> |