Skip to content

0xced/cs-multibase

 
 

Repository files navigation

Multiformats.Base

Travis CI AppVeyor NuGet Codecov Libraries.io

C# implementation of multiformats/multibase.

As stated in the specs, multibase encoded strings are prefixed with an identifier for the base it's encoded in.

Table of Contents

Install

PM> Install-Package Multiformats.Base

CLI> dotnet install Multiformats.Base

Usage

var encoded = Multibase.Encode(MultibaseEncoding.Base32Lower, "hello world");
// bnbswy3dpeb3w64tmmq
var decoded = Multibase.Decode(encoded, out MultibaseEncoding encoding);
// "hello world" (encoding: MultibaseEncoding.Base32Lower)

Supported base encodings

  • Identity
  • Base2
  • Base8
  • Base10
  • Base16
  • Base32
    • Lower / Upper
    • Padded Lower / Upper
    • Hex Lower / Upper
    • Hex Padded Lower / Upper
    • Z-Base32
  • Base58
    • Bitcoin
    • Flickr
  • Base64
    • Unpadded / Padded
    • UrlSafe Unpadded / Padded

Maintainers

Captain: @tabrath.

Contribute

Contributions welcome. Please check out the issues.

Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT © 2018 Trond Bråthen

About

Multibase implementation in C#

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 98.6%
  • Shell 1.4%