Missed file

This commit is contained in:
Jake Hillion 2020-11-28 20:20:43 +00:00
parent 6a5c9e68d7
commit 49d281eb2f

View File

@ -0,0 +1,11 @@
package proxy
type MacGenerator interface {
CodeLength() int
Generate([]byte) []byte
}
type MacVerifier interface {
CodeLength() int
Verify(data []byte, sum []byte) error
}