quickford 1.1.0
dotnet add package quickford --version 1.1.0
NuGet\Install-Package quickford -Version 1.1.0
<PackageReference Include="quickford" Version="1.1.0" />
paket add quickford --version 1.1.0
#r "nuget: quickford, 1.1.0"
// Install quickford as a Cake Addin
#addin nuget:?package=quickford&version=1.1.0
// Install quickford as a Cake Tool
#tool nuget:?package=quickford&version=1.1.0
quickford
Base32 encoding for 64-bit values.
Crockford Base32 Encoding is most commonly used to make numeric identifiers slightly more user-resistant. Similar to Hashids, the purpose here is to make the identifiers shorter and less confusing. Unlike Hashids, Crockford Base32 does nothing to conceal the real value of the number (beyond the actual encoding, anyway) and the fact that they are sequential is still pretty obvious when you see consecutive identifiers side by side.
This library does not support encoding and decoding of arbitrary data. Additionally, the spec supports the idea of check digits, but this library currently does not.
The primary purpose of this library is to provide high performance, user-resistant encoding of numeric identifiers. To that end, both encoding and decoding are, in fact, pretty darn fast--an average of eight times faster than the most popular alternative on nuget.org. Additionally, no initialization is required; all methods are static. (And I mean static. There is no lazy initialization nonsense here!)
This library is a port of crockford for Rust.
Usage
Encoding
Encoding is a one-step process.
var x = Base32.Encode(5111);
Assert.Equal("4ZQ", x);
If you want lowercase, then... Well, tough. However, we do now support encoding to a buffer of your choice rather than a new one created in the function. Read on to learn about plan B...
Alternate encoding
var buffer = new StringBuilder();
Base32.Encode(5111, buffer);
Assert.Equal("4ZQ", buffer.ToString());
...This will allow you to avoid additional allocations associated with creating a new stringbuilder on each call to Encode()
. The call to ToString()
is unavoidable.
Decoding
Decoding is a two-step process. This is because you can feed any string to the decoder, and the decoder will return an error if you try to convince it that "Hello, world!"
is a number. (Hint: it isn't.)
var x = Base32.Decode("4zq");
var y = Base32.Decode("4ZQ");
Assert.Equal(5111, x.Value);
Assert.Equal(5111, y.Value);
So, step one is to call the decode function. Step two is to match/verify/unwrap/throw away the output.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Add TryDecode method.