Add documentation for timeattack

This commit is contained in:
9seconds
2021-04-06 11:03:51 +03:00
parent 372c703ad6
commit a3bae795c4
4 changed files with 18 additions and 3 deletions
+3
View File
@@ -29,6 +29,9 @@ func (d detector) Valid(then time.Time) error {
return nil
}
// NewDetector returns a new TimeAttackDetector which validates that
// timestamp belongs to intervar [X-duration, X+duration], so a small
// timeshift is acceptable.
func NewDetector(duration time.Duration) mtglib.TimeAttackDetector {
return detector{
Duration: duration,