File: galoisfield.go

package info (click to toggle)
golang-barcode 0.0~git20140830-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 280 kB
  • ctags: 270
  • sloc: makefile: 4
file content (54 lines) | stat: -rw-r--r-- 1,055 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package utils

// GaloisField encapsulates galois field arithmetics
type GaloisField struct {
	ALogTbl []int
	LogTbl  []int
}

// NewGaloisField creates a new falois field
func NewGaloisField(pp int) *GaloisField {
	result := new(GaloisField)
	fldSize := 256

	result.ALogTbl = make([]int, fldSize)
	result.LogTbl = make([]int, fldSize)

	x := 1
	for i := 0; i < fldSize; i++ {
		result.ALogTbl[i] = x
		x = x * 2
		if x >= fldSize {
			x = (x ^ pp) & (fldSize - 1)
		}
	}

	for i := 0; i < fldSize; i++ {
		result.LogTbl[result.ALogTbl[i]] = int(i)
	}

	return result
}

// AddOrSub add or substract two numbers
func (gf *GaloisField) AddOrSub(a, b int) int {
	return a ^ b
}

// Multiply multiplys two numbers
func (gf *GaloisField) Multiply(a, b int) int {
	if a == 0 || b == 0 {
		return 0
	}
	return gf.ALogTbl[(gf.LogTbl[a]+gf.LogTbl[b])%255]
}

// Divide divides two numbers
func (gf *GaloisField) Divide(a, b int) int {
	if b == 0 {
		panic("divide by zero")
	} else if a == 0 {
		return 0
	}
	return gf.ALogTbl[(gf.LogTbl[a]-gf.LogTbl[b])%255]
}