Description
Does DES encode.
Syntax
Encryption.desEncode(key, string);
Parameters
Returns
String. You can get the original message by calling the desDecode method with the same key and the returned string value.
Examples
trace(Encryption.desEncode("test",
"message"));
trace(Encryption.desDecode("test",
"QrfRWpfYc9Q="));