Apply encryption algorithm to text. Output is a Base64 text string.

Namespace: LLCryptoLib.Crypto
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public string Base64EncryptDecrypt(
	string text,
	bool coding
)
Visual Basic
Public Function Base64EncryptDecrypt ( _
	text As String, _
	coding As Boolean _
) As String
Visual C++
public:
String^ Base64EncryptDecrypt(
	String^ text, 
	bool coding
)

Parameters

text
Type: System..::..String
Text to encode/decode
coding
Type: System..::..Boolean
If true, code, else decode

Return Value

Encrypted/Decrypted Text

See Also