$encrypt » History » Revision 9
Revision 8 (Per Amundsen, 12/03/2018 03:50 AM) → Revision 9/10 (Per Amundsen, 12/03/2018 03:51 AM)
_Added in 1.9.0_ *$encrypt(text, password)* *Is not secure/accurate and is disabled in AdiIRC 3.3+, use the "blowfish plugin":https://dev.adiirc.com/projects/adiirc/wiki/Blowfish. plugin":https://dev.adiirc.com/projects/adiirc/wiki/Blowfish instead* Encrypts a blowfish text using the "fish10":https://syndicode.org/fish_10/ format using a password. _ECB mode only._ _See also [[$decrypt]]._ *Parameters* text - Text to encrypt. password - Password to encrypt 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 -ag $decrypt(%text, test) </pre>