mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-10 02:53:11 +00:00
16 lines
348 B
Go
16 lines
348 B
Go
|
package kcp
|
||
|
|
||
|
import (
|
||
|
"crypto/aes"
|
||
|
"crypto/cipher"
|
||
|
"crypto/sha256"
|
||
|
|
||
|
"github.com/xtls/xray-core/v1/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)
|
||
|
}
|