@encr() Function |
![]() ![]() ![]() |
@encr() function encrypts the given string using the given encryption key. See @decr() function Syntax: @encr(string-expression[,encoding-key])
string-expression The string to encrypt encoding-key The string to be used as the encryption key. If 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)
|