| 292 | func (k *randKeygen) reset() {} |
| 293 | |
| 294 | type permKeygen struct { |
| 295 | offset int |
| 296 | length int |
| 297 | perm []int |
| 298 | pos int32 |
| 299 | } |
| 300 | |
| 301 | func newPermKeygen(offset, length int) *permKeygen { |
| 302 | return &permKeygen{ |
nothing calls this directly
no outgoing calls
no test coverage detected