_Added in 1.9.0_ *$decrypt(text, password)* *Deprecated, consider using the "blowfish plugin":https://dev.adiirc.com/projects/adiirc/wiki/Blowfish. instead* Decrypts a blowfish text using the "fish10":https://syndicode.org/fish_10/ format, encrypted with password. _ECB mode only._ _See also [[$encrypt]]._ *Parameters* table(ktable). |*Parameter*|*Description*| | text | Text to decrypt. | | password | Password to decrypt 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)