$encrypt » History » Version 1
Per Amundsen, 07/20/2014 08:30 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 | *Parameters* |
||
| 8 | |||
| 9 | text - Text to encrypt. |
||
| 10 | password - Password to encrypt with. |
||
| 11 | |||
| 12 | *Example* |
||
| 13 | |||
| 14 | <pre> |
||
| 15 | ;Create a variable and encrypt text "Hello World" with password "test". |
||
| 16 | var %text $encrypt(Hello World, test) |
||
| 17 | |||
| 18 | ;Decrypt the text and print it. |
||
| 19 | echo -ag $decrypt(%text, test) |
||
| 20 | </pre> |