Actions
$encrypt » History » Revision 9
« Previous |
Revision 9/10
(diff)
| Next »
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. instead
Encrypts a blowfish text using the fish10 format 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)
Updated by Per Amundsen almost 6 years ago · 9 revisions