package correlation import "math/rand" type MathRandSequencer struct{} func (mrs *MathRandSequencer) Next() []byte { buf := make([]byte, 16) read, err := rand.Read(buf) if err != nil { panic("not implemented") } if read != 16 { panic("todo") } return buf }