WADecrypt

Returns the string decoded with specified key.

Syntax

WADecrypt = function(aText, aKey);

Parameters

  • aText
    • functions: encoded string
  • aKey
    • functions: encryption key

Returned value

  • functions: source string

Notes

  • Encryption based on Rijndael
  • PHP implementation of the method can be found this link

Examples

  1. var dec = WADecrypt('561O6/EJRDYXWZoN|f+xhfzFP6mOO1DpcrWHWNg==','pass');
    log(dec);
    //dec = 'source text'