Skip to content

pixeldesu/go-base65536

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.Unmarshal([]byte("驨ꍬ啯𒁷ꍲᕤ"), &out)
	if err != nil {
		panic(err)
	}
}

License

MIT

About

Go library for base65536

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages