status-go/vendor/github.com/wealdtech/go-multicodec
Andrea Maria Piana 9f2a4b378f
Verify ens endpoint, only against mainnet (#1657)
* String payload

* Verify ENS Names

* Update status-protocol-go
2019-11-04 11:08:22 +01:00
..
.gitignore Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
.travis.yml Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
LICENSE Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
README.md Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
codecs.go Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
generate.go Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
generate.sh Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
go.mod Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
go.sum Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00
multicodec.go Verify ens endpoint, only against mainnet (#1657) 2019-11-04 11:08:22 +01:00

README.md

go-multicodec

Tag License GoDoc Travis CI codecov.io

Go utility library to provide encoding and decoding of multicodec values.

Table of Contents

Install

go-multicodec is a standard Go module which can be installed with:

go get github.com/wealdtech/go-multicodec

Usage

Example

import (
    "bytes"
    "encoding/hex"
    "errors"

    multicodec "github.com/wealdtech/go-multicodec"
)

func main() {
    // Data in this case is an IPFS hash in multihash format with a dag-pb content type
    data, err := hex.DecodeString("70122029f2d17be6139079dc48696d1f582a8530eb9805b561eda517e22a892c7e3f1f")
    if err != nil {
        panic(err)
    }

    // Add the "ipfs-ns" namespace codec
    dataWithCodec, err := multicodec.AddCodec("ipfs-ns", data)
    if err != nil {
        panic(err)
    }

    if !multicodec.IsCodec("ipfs-ns", dataWithCodec) {
        panic(errors.New("data does not have correct codec prefix"))
    }

    // Remove the codec
    dataWithoutCodec, _, err := multicodec.RemoveCodec(dataWithCodec)
    if err != nil {
        panic(err)
    }

    if !bytes.Equal(data, dataWithoutCodec) {
        panic(errors.New("data mismatch"))
    }
}

Maintainers

Jim McDonald: @mcdee.

Contribute

Contributions welcome. Please check out the issues.

License

Apache-2.0 © 2019 Weald Technology Trading Ltd