Find a file
2016-02-03 19:58:57 +01:00
base65536.go Document unmarshaling 2016-02-03 19:47:53 +01:00
base65536_test.go Unmarshaling! 2016-02-03 19:41:45 +01:00
get_b2.go Initial commit. Supporting only marshaling/encoding atm 2016-02-03 18:34:11 +01:00
get_block_start.go Initial commit. Supporting only marshaling/encoding atm 2016-02-03 18:34:11 +01:00
README.md add godoc badge 2016-02-03 19:58:57 +01:00

go-base65536 GoDoc

Go library for encoding data into base65536.

Examples

Marshaling

package main

import (
	"fmt"
	"github.com/Nightbug/go-base65536"
)

func main() {
	fmt.Println(base65536.Marshal([]byte("hello world")))
}

Unmarshaling

package main

import (
	"fmt"
	"github.com/Nightbug/go-base65536"
)

func main() {
	var out []byte
	err := base65536.Marshal([]byte("驨ꍬ啯𒁷ꍲᕤ"), &out)
	if err != nil {
		panic(err)
	}
}

License

MIT