mirror of https://github.com/fatedier/frp.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
161 B
Go
9 lines
161 B
Go
7 years ago
|
// +build !amd64
|
||
|
|
||
|
package reedsolomon
|
||
|
|
||
|
func newRS(d, p int, em matrix) (enc Encoder) {
|
||
|
g := em[d*d:]
|
||
|
return &encBase{data: d, parity: p, encode: em, gen: g}
|
||
|
}
|