@decr() Function |
![]() ![]() ![]() |
@decr() function decrypts the given encrypted string and returns it. See @encr() function Syntax: @decr(encrypted-string[,encryption-key])
encrypted-string The string that was encrypted with @encr() function. encryption-key Encryption key that was used during the encryption. If this parameter is omitted the default encryption key is used.
Example: @set(v:AB, encr(AB,'xyz')) @echo(v:AB)
@set(v:AB, decr(v:AB,'xyz')) @echo(v:AB)
|