|

Key


(string) The secret key that the data was encrypted with.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

Crypto.BlowfishDecryptString

OverviewExamples

string Crypto.BlowfishDecryptString ( string Text,


string Key )


De s cr ip t ion


image

Decrypts a string that was encrypted using the Crypto.BlowfishEncryptString action. (Decodes a base64- encoded string and decrypts the blowfish-encrypted data.)


Tip: You do not have to Base64Decode the string first, simply pass this action any string encoded using Crypto.BlowfishEncryptString.


Note: Base64 encoding is the process of encoding arbitrary data as plain ASCII text. One common use for this type of encoding is sending files through email. It is one of the techniques employed by the MIME standard to send data other than plain ASCII text.


P arame t er s


Text


(string) The string that you want to decrypt.


|