1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-21 08:46:31 -05:00
v2fly/common/crypto/authenticator.go
2016-01-29 13:39:55 +00:00

7 lines
112 B
Go

package crypto
type Authenticator interface {
AuthSize() int
Authenticate(auth []byte, data []byte) []byte
}