Actions
$decrypt » History » Revision 8
« Previous |
Revision 8/9
(diff)
| Next »
Per Amundsen, 12/03/2018 03:57 AM
Added in 1.9.0
$decrypt(text, password)
Deprecated, consider using the blowfish plugin. instead
Decrypts a blowfish text using the fish10 format, encrypted with password.
ECB mode only.
See also $encrypt.
Parameters
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)
Updated by Per Amundsen almost 6 years ago · 8 revisions