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