MikValSor.Base32
1.0.6
dotnet add package MikValSor.Base32 --version 1.0.6
NuGet\Install-Package MikValSor.Base32 -Version 1.0.6
<PackageReference Include="MikValSor.Base32" Version="1.0.6" />
paket add MikValSor.Base32 --version 1.0.6
#r "nuget: MikValSor.Base32, 1.0.6"
// Install MikValSor.Base32 as a Cake Addin #addin nuget:?package=MikValSor.Base32&version=1.0.6 // Install MikValSor.Base32 as a Cake Tool #tool nuget:?package=MikValSor.Base32&version=1.0.6
.NET Standard Libaray for Base32 Encoder, Decoder and ValueType. Implementing multiple standards:
- [default] Base32 according to RFC4648.
- z-base-32 aka. ZBase32.
- Crockford's Base32.
- base32hex / Triacontakaidecimal according to RFC 2938.
Encoding Example:
static void EncodeExample()
{
var bytearray = new byte[] { 0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11 };
var base32string = MikValSor.Encoding.Base32Encoder.Encode(bytearray);
System.Console.WriteLine($"base32string: {base32string}");
}
/**
Output:
base32string: AAAQEBAFAYDQQCIKBM======
**/
Decoding Example:
static void DecodeExample()
{
var base32string = "AAAQEBAFAYDQQCIKBM======";
var bytearray = MikValSor.Encoding.Base32Decoder.Decode(base32string);
for (var i = 0; i < bytearray.Length; i++)
{
System.Console.WriteLine($"bytearray[{i}]: {bytearray[i]}");
}
}
/**
Output:
bytearray[0]: 0
bytearray[1]: 1
bytearray[2]: 2
bytearray[3]: 4
bytearray[4]: 5
bytearray[5]: 6
bytearray[6]: 7
bytearray[7]: 8
bytearray[8]: 9
bytearray[9]: 10
bytearray[10]: 11
**/
Value Type Encode Example:
static void ValueTypeEncodeExample()
{
var bytearray = new byte[] { 0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11 };
MikValSor.Encoding.Base32 base32 = new MikValSor.Encoding.Base32(bytearray);
System.Console.WriteLine($"base32: {base32}");
}
/**
Output:
base32: AAAQEBAFAYDQQCIKBM======
**/
Value Type Parse Example:
static void ValueTypeParseExample()
{
var base32string = "AAAQEBAFAYDQQCIKBM======";
MikValSor.Encoding.Base32 base32 = MikValSor.Encoding.Base32.Parse(base32string);
var bytearray = base32.ToByteArray();
for (var i = 0; i < bytearray.Length; i++)
{
System.Console.WriteLine($"bytearray[{i}]: {bytearray[i]}");
}
}
/**
Output:
bytearray[0]: 0
bytearray[1]: 1
bytearray[2]: 2
bytearray[3]: 4
bytearray[4]: 5
bytearray[5]: 6
bytearray[6]: 7
bytearray[7]: 8
bytearray[8]: 9
bytearray[9]: 10
bytearray[10]: 11
**/
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- MikValSor.ImmutableCollection (>= 1.0.4)
-
.NETStandard 2.0
- MikValSor.ImmutableCollection (>= 1.0.4)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on MikValSor.Base32:
Package | Downloads |
---|---|
MikValSor.ImmutableStore
Library for storage of immutable .Net types. |
GitHub repositories
This package is not used by any popular GitHub repositories.
1.0.6 - Added Icon.
1.0.5 - Made Base32 value type Immutable and Serializable.
1.0.4 - Added .NET Framework 4.5 build output.
1.0.3 - Added support for z-base-32, Crockford's Base32 and base32hex / Triacontakaidecimal / RFC 2938
1.0.2 - Fixed encoding bug and optimizations.
1.0.1 - Added in class documentation.
1.0.0 - Initial release.