1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-22 01:06:30 -05:00
v2fly/common/crypto/authenticator.go

7 lines
112 B
Go
Raw Normal View History

2016-01-29 04:57:52 -05:00
package crypto
type Authenticator interface {
2016-01-29 08:39:55 -05:00
AuthSize() int
2016-01-29 04:57:52 -05:00
Authenticate(auth []byte, data []byte) []byte
}