Description
Do blowfish encode.
Syntax
Encryption.blowfishEncode(key, string);
Parameters
Returns
String. You can get the original message by calling the blowfishDecode method with the same key and the returned string value.
Examples
trace(Encryption.blowfishEncode("test",
"message"));
trace(Encryption.blowfishDecode("test",
"2KRNdy7o/90="));