mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-21 08:46:31 -05:00
7 lines
112 B
Go
7 lines
112 B
Go
package crypto
|
|
|
|
type Authenticator interface {
|
|
AuthSize() int
|
|
Authenticate(auth []byte, data []byte) []byte
|
|
}
|