Xray-core/transport/internet/kcp/cryptreal.go

16 lines
345 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package kcp
import (
"crypto/aes"
"crypto/cipher"
"crypto/sha256"
2020-12-04 03:36:16 +02:00
"github.com/xtls/xray-core/common"
2020-11-25 13:01:53 +02:00
)
func NewAEADAESGCMBasedOnSeed(seed string) cipher.AEAD {
hashedSeed := sha256.Sum256([]byte(seed))
aesBlock := common.Must2(aes.NewCipher(hashedSeed[:16])).(cipher.Block)
return common.Must2(cipher.NewGCM(aesBlock)).(cipher.AEAD)
}