Initial commit

This commit is contained in:
世界 2022-01-29 03:25:38 +08:00
commit 5cc189a169
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
32 changed files with 2565 additions and 0 deletions

View 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")
}
}