Refactor shadowsocks

This commit is contained in:
世界 2022-04-10 22:51:29 +08:00
parent 3f23b25edf
commit 00cd0d4b8f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
75 changed files with 3169 additions and 1318 deletions

18
common/random/rng.go Normal file
View file

@ -0,0 +1,18 @@
package random
import (
"crypto/rand"
"io"
"github.com/sagernet/sing/common"
"lukechampine.com/blake3"
)
var System = rand.Reader
func Blake3KeyedHash() io.Reader {
key := make([]byte, 32)
common.Must1(io.ReadFull(System, key))
h := blake3.New(1024, key)
return h.XOF()
}