Convert a Base64 string to its bytes

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

Syntax

C#
public static byte[] Base64StringToBytes(
	string inBase
)
Visual Basic
Public Shared Function Base64StringToBytes ( _
	inBase As String _
) As Byte()
Visual C++
public:
static array<unsigned char>^ Base64StringToBytes(
	String^ inBase
)

Parameters

inBase
Type: System..::..String
Base64 inputString

Return Value

Bytes in Base64 string

See Also