BaseEncodingFromBase32CharArray Method

Decodes a Base32 char array as described in RFC 4648.

Definition

Namespace: ARSoft.Tools.Net
Assembly: ARSoft.Tools.Net (in ARSoft.Tools.Net.dll) Version: 3.6.1+aaafdcd61f068318c11734f7b3c59c69371c0549
C#
public static byte[] FromBase32CharArray(
	this char[] inData,
	int offset,
	int length
)

Parameters

inData  Char
An Base32 encoded char array.
offset  Int32
An offset in inData.
length  Int32
The number of elements of inData to decode.

Return Value

Byte
Decoded data

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Char. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also