Apply encryption algorithm to text. Output is in hex numbers

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

Syntax

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

Parameters

text
Type: System..::..String
Text to encode/decode
coding
Type: System..::..Boolean
If true, code, else decode
style
Type: LLCryptoLib.Utils..::..HexEnum
Hexadecimal style to use

Return Value

Encrypted/Decrypted Text

See Also