Project

General

Profile

Actions

$decrypt » History » Revision 6

« Previous | Revision 6/9 (diff) | Next »
Per Amundsen, 10/28/2018 10:03 PM


Added in 1.9.0

$decrypt(text, password)

Decrypts a blowfish text, 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 over 5 years ago · 6 revisions

Also available in: PDF HTML TXT