Class Base32Encoding
Inheritance
Base32Encoding
Assembly: cs.temp.dll.dll
Syntax
public static class Base32Encoding
Fields
PaddingCharValue
Declaration
public static readonly byte PaddingCharValue
Field Value
Methods
ToBytes(String)
Declaration
public static byte[] ToBytes(string input)
Parameters
Type |
Name |
Description |
String |
input |
|
Returns
ToBytes<TByteArray, TString>(TString, ref TByteArray)
Declaration
public static ConversionError ToBytes<TByteArray, TString>(TString s, ref TByteArray bytes)
where TByteArray : struct, IByteArray where TString : struct, IUTF8Bytes, INativeList<byte>
Parameters
Type |
Name |
Description |
TString |
s |
|
TByteArray |
bytes |
|
Returns
Type |
Description |
ConversionError |
|
Type Parameters
Name |
Description |
TByteArray |
|
TString |
|
ToString(Byte[])
Declaration
public static string ToString(byte[] input)
Parameters
Type |
Name |
Description |
Byte[] |
input |
|
Returns
ToString<TByteArray, TString>(TByteArray, ref TString)
Declaration
public static ConversionError ToString<TByteArray, TString>(TByteArray bytes, ref TString s)
where TByteArray : struct, IByteArray where TString : struct, IUTF8Bytes, INativeList<byte>
Parameters
Type |
Name |
Description |
TByteArray |
bytes |
|
TString |
s |
|
Returns
Type |
Description |
ConversionError |
|
Type Parameters
Name |
Description |
TByteArray |
|
TString |
|
TrimPadding<T>(ref T)
Declaration
public static void TrimPadding<T>(ref T fs)
where T : struct, INativeList<byte>, IUTF8Bytes
Parameters
Type |
Name |
Description |
T |
fs |
|
Type Parameters