• Stars
    star
    142
  • Rank 256,967 (Top 6 %)
  • Language
    C#
  • License
    Apache License 2.0
  • Created almost 10 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

.NET library for encoding/decoding Base16, Base32, Base58 and Base85.

SimpleBase

NuGet Version Build Status

This is my own take for exotic base encodings like Base32, Base58 and Base85. I started to write it in 2013 as coding practice and kept it as a small pet project. I suggest anyone who wants to brush up their coding skills to give those encoding problems a shot. They turned out to be more challenging than I expected. To grasp the algorithms I had to get a pen and paper to see how the math worked.

Features

  • Base32: RFC 4648, BECH32, Crockford, z-base-32, Geohash, FileCoin and Extended Hex (BASE32-HEX) flavors with Crockford character substitution, or any other custom flavors.
  • Base58: Bitcoin, Ripple, Flickr, and custom flavors. Also provides Base58Check and Avalanche CB58 encoding helpers.
  • Base85: Ascii85, Z85 and custom flavors. IPv6 encoding/decoding support.
  • Base16: UpperCase, LowerCase and ModHex flavors. An experimental hexadecimal encoder/decoder just to see how far I can take the optimizations compared to .NET's implementations. It's quite fast now. It could also be used as a replacement for SoapHexBinary.Parse although .NET has Convert.FromHexString() method since .NET 5.
  • One-shot memory buffer based APIs for simple use cases.
  • Stream-based async APIs for more advanced scenarios.
  • Lightweight: No dependencies.
  • Thread-safe.
  • Simple to use.

NuGet

To install it from NuGet:

Install-Package SimpleBase

Usage

Base32

Encode a byte array:

using SimpleBase;

byte[] myBuffer;
string result = Base32.Crockford.Encode(myBuffer, padding: true);
// you can also use "ExtendedHex" or "Rfc4648" as encoder flavors

Decode a Base32-encoded string:

using SimpleBase;

string myText = ...
byte[] result = Base32.Crockford.Decode(myText);

Base58

Encode a byte array:

byte[] myBuffer = ...
string result = Base58.Bitcoin.Encode(myBuffer);
// you can also use "Ripple" or "Flickr" as encoder flavors

Decode a Base58-encoded string:

string myText = ...
byte[] result = Base58.Bitcoin.Decode(myText);

Encode a Base58Check address:

byte[] address = ...
byte version = 1; // P2PKH address
string result = Base58.Bitcoin.EncodeCheck(address, version);

Decode a Base58Check address:

string address = ...
Span<byte> buffer = new byte[maxAddressLength];
if (Base58.Bitcoin.TryDecodeCheck(address, buffer, out byte version, out int numBytesWritten));
buffer = buffer[..numBytesWritten]; // use only the written portion of the buffer

Avalanche CB58 usage is pretty much the same except it doesn't have a separate version field. Just use EncodeCb58 and TryDecodeCb58 methods instead. For encoding:

byte[] address = ...
byte version = 1;
string result = Base58.Bitcoin.EncodeCb58(address);

For decoding:

string address = ...
Span<byte> buffer = new byte[maxAddressLength];
if (Base58.Bitcoin.TryDecodeCb58(address, buffer, out int numBytesWritten));
buffer = buffer[..numBytesWritten]; // use only the written portion of the buffer

Base85

Encode a byte array to Ascii85 string:

byte[] myBuffer = ...
string result = Base85.Ascii85.Encode(myBuffer);
// you can also use Z85 as a flavor

Decode an encoded Ascii85 string:

string encodedString = ...
byte[] result = Base85.Ascii85.Decode(encodedString);

Both "zero" and "space" shortcuts are supported for Ascii85. Z85 is still vanilla.

Base16

Encode a byte array to hex string:

byte[] myBuffer = ...
string result = Base16.EncodeUpper(myBuffer); // encode to uppercase
// or 
string result = Base16.EncodeLower(myBuffer); // encode to lowercase

To decode a valid hex string:

string text = ...
byte[] result = Base16.Decode(text); // decodes both upper and lowercase

Stream Mode

Most encoding classes also support a stream mode that can work on streams, be it a network connection, a file or whatever you want. They are ideal for handling arbitrarily large data as they don't consume memory other than a small buffer when encoding or decoding. Their syntaxes are mostly identical. Text encoding decoding is done through a TextReader/TextWriter and the rest is read through a Stream interface. Here is a simple code that encodes a file to another file using Base85 encoding:

using (var input = File.Open("somefile.bin"))
using (var output = File.Create("somefile.ascii85"))
using (var writer = new TextWriter(output)) // you can specify encoding here
{
  Base85.Ascii85.Encode(input, writer);
}

Decode works similarly. Here is a Base32 file decoder:

using (var input = File.Open("somefile.b32"))
using (var output = File.Create("somefile.bin"))
using (var reader = new TextReader(input)) // specify encoding here
{
	Base32.Crockford.Decode(reader, output);
}

Asynchronous Stream Mode

You can also encode/decode streams in asynchronous fashion:

using (var input = File.Open("somefile.bin"))
using (var output = File.Create("somefile.ascii85"))
using (var writer = new TextWriter(output)) // you can specify encoding here
{
  await Base85.Ascii85.EncodeAsync(input, writer);
}

And the decode:

using (var input = File.Open("somefile.b32"))
using (var output = File.Create("somefile.bin"))
using (var reader = new TextReader(input)) // specify encoding here
{
	await Base32.Crockford.DecodeAsync(reader, output);
}

TryEncode/TryDecode

If you want to use an existing pre-allocated buffer to encode or decode without causing a GC allocation every time, you can make use of TryEncode/TryDecode methods which receive input, output buffers as parameters.

Encoding is like this:

byte[] input = new byte[] { 1, 2, 3, 4, 5 };
int outputBufferSize = Base58.Bitcoin.GetSafeCharCountForEncoding(input);
var output = new char[outputBufferSize];

if (Base58.Bitcoin.TryEncode(input, output, out int numCharsWritten))
{
   // there you go
}

and decoding:

string input = "... some bitcoin address ...";
int outputBufferSize = Base58.Bitcoin.GetSafeByteCountForDecoding(output);
var output = new byte[outputBufferSize];

if (Base58.Bitcoin.TryDecode(input, output, out int numBytesWritten))
{
    // et voila!
}

Benchmark Results

Small buffer sizes are used (64 characters). They are closer to real life applications. Base58 performs really bad in decoding of larger buffer sizes, due to polynomial complexity of numeric base conversions.

BenchmarkDotNet=v0.13.1, OS=Windows 10.0.22000 AMD Ryzen 9 5950X, 1 CPU, 32 logical and 16 physical cores .NET SDK=6.0.200

Encoding (64 byte buffer)

Method Mean Error StdDev Ratio RatioSD
DotNet_Base64 79.09 ns 1.505 ns 1.733 ns 1.00 0.00
SimpleBase_Base16_UpperCase 123.14 ns 2.523 ns 6.189 ns 1.61 0.10
SimpleBase_Base32_CrockfordWithPadding 188.76 ns 3.587 ns 3.179 ns 2.39 0.08
SimpleBase_Base85_Z85 212.02 ns 4.112 ns 4.222 ns 2.68 0.10
SimpleBase_Base58_Bitcoin 70.11 ns 1.443 ns 3.012 ns 0.91 0.05

Decoding (80 character string)

Method Mean Error StdDev Ratio RatioSD
DotNet_Base64 120.86 ns 1.327 ns 1.177 ns 1.00 0.00
SimpleBase_Base16_UpperCase 65.81 ns 0.816 ns 0.723 ns 0.54 0.01
SimpleBase_Base32_Crockford 139.15 ns 1.470 ns 1.375 ns 1.15 0.01
SimpleBase_Base85_Z85 362.87 ns 6.024 ns 5.340 ns 3.00 0.06
SimpleBase_Base58_Bitcoin 5,118.61 ns 34.360 ns 30.459 ns 42.36 0.48

Notes

I'm sure there are areas for improvement. I didn't want to go further in optimizations which would hurt readability and extensibility. I might experiment on them in the future.

Test suite for Base32 isn't complete, I took most of it from RFC4648. Base58 really lacks a good spec or test vectors needed. I had to resort to using online converters to generate preliminary test vectors.

Base85 tests are also makseshift tests based on what output Cryptii produces. Contribution to missing test cases are greatly appreciated.

It's interesting that I wasn't able to reach .NET Base64's performance with Base16 with a straightforward managed code despite that it's much simpler. I was only able to match it after I converted Base16 to unsafe code with good independent interleaving so CPU pipeline optimizations could take place. Still not satisfied though. Is .NET's Base64 implementation native? Perhaps.

Thanks

Thanks to all contributors (most up to date is on the GitHub sidebar) who provided patches, and reported bugs.

Chatting about this pet project with my friends @detaybey, @vhallac, @alkimake and @Utopians at one of our friend's birthday encouraged me to finish this. Thanks guys.

More Repositories

1

sozluk-cgi

one of the first versions of ekşi sözlük code as of may 1999
Pascal
235
star
2

HashDepot

.NET library for xxHash, FNV, MurmurHash3 and SipHash algorithms
C#
133
star
3

streetcoder

Code examples used in the book Street Coder https://streetcoder.org
JavaScript
83
star
4

TurkishId

Validator/generator for Turkish Republic Citizen ID numbers (TC Kimlik No)
C#
77
star
5

fatalvision

FatalVision DOS-based GUI library for Turbo Pascal
Pascal
48
star
6

wolverine

An offline mail reader for FidoNet-style networks supporting BlueWave and QWK formats.
Pascal
27
star
7

NoJoy

Tool for quickly enabling/disabling game controllers
C#
25
star
8

PathCleaner

Cleanup tool for polluted PATH environment variable
C#
22
star
9

yubitell

Silently extract a YubiKey serial number
HTML
20
star
10

trid

Parser and data type for Turkish Citizenship ID numbers
Rust
19
star
11

unbom

Mass remove UTF-8 BOM markers from text files
C#
18
star
12

path

Command-line tool to manage PATH environment variable
C#
16
star
13

mazecpc

Amstrad CPC Edition of "10 PRINT" maze generator challenge (12 bytes)
Assembly
15
star
14

ssgmatrix

The Matrix screensaver
Pascal
14
star
15

Genesis

Windows 10 Initial Configuration Script
PowerShell
14
star
16

eksi-yedek

ekşi sözlük XML backup reader
JavaScript
12
star
17

genav

DOS anti virus software
Pascal
11
star
18

cinali

cinali internet downloader
C#
10
star
19

screenfetch-ps

PowerShell version of screenfetch
PowerShell
8
star
20

tweet_deleter

JavaScript
8
star
21

Eksi.Tasks

A set of NAnt commands to wrap JSLint, JSMin and CSSMin
JavaScript
7
star
22

poly

MRP Software for PVC Window Manufacturers
Pascal
6
star
23

xdream

An old IRC script for XiRCON
Tcl
6
star
24

soc

ssg's own commander (yet another total commander clone)
Pascal
5
star
25

ExeTools

PowerShell
4
star
26

act2txt

Tool to convert Adobe Photoshop ACT palette files to Paint.NET format
C#
4
star
27

ssg

profile repository
3
star
28

xmlite

Unsued sample remover from FastTracker II .XM files.
Pascal
3
star
29

melchior

simple network status monitoring tool
Pascal
3
star
30

simplex

Simplex maximizer
C#
3
star
31

yello

A Hello World application that is a hybrid Z80 and BASIC code
Assembly
2
star
32

amele

Tool to convert EF6 [Index] attributes to EF Core declarative syntax
C#
2
star
33

run-ssg-run

128-byte intro released in 7DX 2012 demoscene party
Assembly
2
star
34

xcode

my xcode settings
2
star
35

nojoy-rs

Rust
1
star
36

TurboSurfer

Pascal
1
star
37

ourobs

HTML
1
star
38

Move-Shadow

PowerShell cmdlets to move folders transparently between drives
PowerShell
1
star