From 2208da1d86492f7401c9ca09f87e080c00769b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Fri, 1 Jul 2022 16:48:35 +0800 Subject: [PATCH] Add initialize seed call --- go.mod | 2 +- go.sum | 4 ++-- shadowaead_2022/protocol.go | 5 +++++ shadowaead_2022/stub.s | 0 4 files changed, 8 insertions(+), 3 deletions(-) delete mode 100644 shadowaead_2022/stub.s diff --git a/go.mod b/go.mod index 6bd7261..d35ff8d 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/sagernet/sing-shadowsocks go 1.18 require ( - github.com/sagernet/sing v0.0.0-20220701010008-eb347e80a46f + github.com/sagernet/sing v0.0.0-20220701084654-2a0502dd664e golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d lukechampine.com/blake3 v1.1.7 ) diff --git a/go.sum b/go.sum index 54a62e6..edbe17c 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,8 @@ github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12 h1:p9dKCg8i4gmOxtv35DvrYoWqYzQrvEVdjQ762Y0OqZE= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= -github.com/sagernet/sing v0.0.0-20220701010008-eb347e80a46f h1:kmtWNwUjAnILpyNPJjdp9+9bcq4IA9hmBbEBLb3L6R8= -github.com/sagernet/sing v0.0.0-20220701010008-eb347e80a46f/go.mod h1:3ZmoGNg/nNJTyHAZFNRSPaXpNIwpDvyIiAUd0KIWV5c= +github.com/sagernet/sing v0.0.0-20220701084654-2a0502dd664e h1:GHT5FW/T8ckRe2BuHoCpzx9zrMPtUO7hvfjqs1Tak0I= +github.com/sagernet/sing v0.0.0-20220701084654-2a0502dd664e/go.mod h1:3ZmoGNg/nNJTyHAZFNRSPaXpNIwpDvyIiAUd0KIWV5c= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b h1:2n253B2r0pYSmEV+UNCQoPfU/FiaizQEK5Gu4Bq4JE8= diff --git a/shadowaead_2022/protocol.go b/shadowaead_2022/protocol.go index 09e0ad0..f56e25f 100644 --- a/shadowaead_2022/protocol.go +++ b/shadowaead_2022/protocol.go @@ -8,6 +8,7 @@ import ( "crypto/sha256" "encoding/base64" "encoding/binary" + "github.com/sagernet/sing/common/random" "io" "math" mRand "math/rand" @@ -61,6 +62,10 @@ var List = []string{ "2022-blake3-chacha20-poly1305", } +func init() { + random.InitializeSeed() +} + func NewWithPassword(method string, password string, options ...MethodOption) (shadowsocks.Method, error) { var pskList [][]byte if password == "" { diff --git a/shadowaead_2022/stub.s b/shadowaead_2022/stub.s deleted file mode 100644 index e69de29..0000000