CID implementation in C#
Supports v0 and v1 of CIDs.
PM> Install-Package ContentIdentifier
// create v0 cid
var cid = new Cid(MultihashValue);
// create v1 cid
var cid = new Cid(CidCodec.DagCBOR, MultihashValue);
// parse
var cid = Cid.Parse(string/byte[]/Multihash/Cid);
MIT © 2016 Trond Bråthen