mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 02:38:10 -05:00
16 lines
190 B
Go
16 lines
190 B
Go
package protocol
|
|
|
|
import (
|
|
"crypto/hmac"
|
|
"crypto/md5"
|
|
"hash"
|
|
)
|
|
|
|
func TimestampHash() hash.Hash {
|
|
return md5.New()
|
|
}
|
|
|
|
func IDHash(key []byte) hash.Hash {
|
|
return hmac.New(md5.New, key)
|
|
}
|