Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zedseven/bch
An implementation of Bose-Chaudhuri-Hocquenghem codes and error-checking in Go.
https://github.com/zedseven/bch
bch bch-codes bose-chaudhuri-hocquenghem error-correcting-codes go golang
Last synced: about 2 months ago
JSON representation
An implementation of Bose-Chaudhuri-Hocquenghem codes and error-checking in Go.
- Host: GitHub
- URL: https://github.com/zedseven/bch
- Owner: zedseven
- License: mit
- Created: 2020-02-01T00:21:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-06T09:33:11.000Z (over 4 years ago)
- Last Synced: 2024-11-14T20:47:31.529Z (about 2 months ago)
- Topics: bch, bch-codes, bose-chaudhuri-hocquenghem, error-correcting-codes, go, golang
- Language: Go
- Homepage:
- Size: 66.4 KB
- Stars: 16
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bch
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/zedseven/bch?status.svg)](https://godoc.org/github.com/zedseven/bch)An implementation of binary Bose-Chaudhuri-Hocquenghem (BCH) codes and error-checking in Go.
## Using the package
To include it in a project, simply use:
```go
import "github.com/zedseven/bch"
```See [the GoDoc manual](https://godoc.org/github.com/zedseven/bch) for documentation.
## An important note
Please note I did not write the basis of this package - I ported it over from [an excellent example in C on ECCPage](http://www.eccpage.com/bch3.c).
I did, however, clean it up and build the rest of the package around the rudimentary example.
Credit goes to Robert Morelos-Zaragoza for the base code.