https://github.com/manifoldco/go-base32
base32 encoding using Manifold's chosen alphabet
https://github.com/manifoldco/go-base32
base32 go golang
Last synced: about 2 months ago
JSON representation
base32 encoding using Manifold's chosen alphabet
- Host: GitHub
- URL: https://github.com/manifoldco/go-base32
- Owner: manifoldco
- License: bsd-3-clause
- Created: 2017-04-06T15:05:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T14:59:29.000Z (over 5 years ago)
- Last Synced: 2025-05-08T08:03:23.794Z (5 months ago)
- Topics: base32, go, golang
- Language: Go
- Homepage: https://www.manifold.co
- Size: 14.6 KB
- Stars: 2
- Watchers: 25
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# go-base32
base32 encoding using Manifold's chosen alphabet, with no padding.
[Code of Conduct](./.github/CONDUCT.md) |
[Contribution Guidelines](./.github/CONTRIBUTING.md)[](https://github.com/manifoldco/go-base32/releases)
[](https://godoc.org/github.com/manifoldco/go-base32)
[](https://travis-ci.org/manifoldco/go-base32)
[](https://goreportcard.com/report/github.com/manifoldco/go-base32)
[](./LICENSE.md)## Usage
```go
package mainimport (
"fmt""github.com/manifoldco/go-base32"
)func main() {
sample := []byte{0xF, 0xEE, 0xD, 0xC, 0x0D}fmt.Println(base32.EncodeToString(sample))
}
```Outputs:
```
1zq0u30d
```