mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 21:37:38 +03:00
Refactor shadowsocks
This commit is contained in:
parent
3f23b25edf
commit
00cd0d4b8f
75 changed files with 3169 additions and 1318 deletions
18
common/random/rng.go
Normal file
18
common/random/rng.go
Normal 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()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue