authenticator.go 112 B

123456
  1. package crypto
  2. type Authenticator interface {
  3. AuthSize() int
  4. Authenticate(auth []byte, data []byte) []byte
  5. }