mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
345 B
16 lines
345 B
package kcp
|
|
|
|
import (
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"crypto/sha256"
|
|
|
|
"github.com/xtls/xray-core/common"
|
|
)
|
|
|
|
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)
|
|
}
|