mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
parent
4c10a9eb4e
commit
d22c2d034c
@ -6,11 +6,20 @@ import (
|
|||||||
"hash"
|
"hash"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type hash2 struct {
|
||||||
|
hash.Hash
|
||||||
|
}
|
||||||
|
|
||||||
func KDF(key []byte, path ...string) []byte {
|
func KDF(key []byte, path ...string) []byte {
|
||||||
hmacf := hmac.New(sha256.New, []byte(KDFSaltConstVMessAEADKDF))
|
hmacf := hmac.New(sha256.New, []byte(KDFSaltConstVMessAEADKDF))
|
||||||
|
|
||||||
for _, v := range path {
|
for _, v := range path {
|
||||||
|
first := true
|
||||||
hmacf = hmac.New(func() hash.Hash {
|
hmacf = hmac.New(func() hash.Hash {
|
||||||
|
if first {
|
||||||
|
first = false
|
||||||
|
return hash2{hmacf}
|
||||||
|
}
|
||||||
return hmacf
|
return hmacf
|
||||||
}, []byte(v))
|
}, []byte(v))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user