Convert a stream of bytes into a string of hexadecimal numbers, without divisor char.

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

Syntax

C#
public static string BytesToHex(
	byte[] inbytes,
	HexEnum style
)
Visual Basic
Public Shared Function BytesToHex ( _
	inbytes As Byte(), _
	style As HexEnum _
) As String
Visual C++
public:
static String^ BytesToHex(
	array<unsigned char>^ inbytes, 
	HexEnum style
)

Parameters

inbytes
Type: array<System..::..Byte>[]()[][]
Array of bytes
style
Type: LLCryptoLib.Utils..::..HexEnum
Hexadecimal style

Return Value

String of hexadecimal values

See Also