Files

7 lines
105 B
Go
Raw Permalink Normal View History

package antireplay
type GeneralizedReplayFilter interface {
Interval() int64
Check(sum []byte) bool
}