mKCP: Fix key derivation for obfuscation (#5106)

Fixes https://github.com/XTLS/Xray-core/issues/5096
This commit is contained in:
风扇滑翔翼
2025-09-08 21:59:28 +08:00
committed by GitHub
parent ab1fa13ebe
commit 2b82366148

View File

@@ -9,5 +9,5 @@ import (
func NewAEADAESGCMBasedOnSeed(seed string) cipher.AEAD {
hashedSeed := sha256.Sum256([]byte(seed))
return crypto.NewAesGcm(hashedSeed[:])
return crypto.NewAesGcm(hashedSeed[:16])
}