1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-06 14:28:28 +00:00
2017-10-25 02:29:04 +08:00

9 lines
161 B
Go

// +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}
}