authenticator.go 113 B

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