mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Initial commit
This commit is contained in:
commit
5cc189a169
32 changed files with 2565 additions and 0 deletions
25
protocol/shadowsocks/protocol_test.go
Normal file
25
protocol/shadowsocks/protocol_test.go
Normal file
|
@ -0,0 +1,25 @@
|
|||
package shadowsocks_test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"testing"
|
||||
|
||||
vs "github.com/v2fly/v2ray-core/v5/proxy/shadowsocks"
|
||||
"sing/common"
|
||||
"sing/protocol/shadowsocks"
|
||||
)
|
||||
|
||||
func TestGenerateKey(t *testing.T) {
|
||||
password := "fuck me till the daylight"
|
||||
|
||||
protoAccount := &vs.Account{
|
||||
Password: password,
|
||||
CipherType: vs.CipherType_AES_128_GCM,
|
||||
}
|
||||
memoryAccount, err := protoAccount.AsAccount()
|
||||
common.Must(err)
|
||||
account := memoryAccount.(*vs.MemoryAccount)
|
||||
if bytes.Compare(account.Key, shadowsocks.Key([]byte(password), int(account.Cipher.KeySize()))) > 0 {
|
||||
t.Fatal("bad key")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue