mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
开发中
This commit is contained in:
@@ -23,3 +23,39 @@ func TestBytes(t *testing.T) {
|
||||
t.Log(hex.EncodeToString(Bytes(uint32(1))))
|
||||
t.Log(hex.EncodeToString(Bytes(uint16(0x0d00))))
|
||||
}
|
||||
|
||||
func TestDecode(t *testing.T) {
|
||||
s := "b1cb74001c00000000000d005100bd00789c6378c1cecb252ace6066c5b4898987b9050ed1f90cc5b74c18a5bc18c1b43490fecff09c81819191f13fc3c9f3bb169f5e7dfefeb5ef57f7199a305009308208e5b32bb6bcbf70148712002d7f1e13"
|
||||
bs, err := hex.DecodeString(s)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
resp, err := Decode(bs)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
||||
t.Log(len(resp.Data))
|
||||
|
||||
t.Log(hex.EncodeToString(resp.Data))
|
||||
|
||||
t.Log(string(resp.Data))
|
||||
|
||||
t.Log(string(UTF8ToGBK(resp.Data)))
|
||||
|
||||
t.Log(string(UTF8ToGBK(resp.Data[68:])))
|
||||
|
||||
t.Log(DecodeConnect(resp.Data))
|
||||
|
||||
//result, err := DecodeSecurityList(resp.Data)
|
||||
//if err != nil {
|
||||
// t.Error(err)
|
||||
// return
|
||||
//}
|
||||
//
|
||||
//t.Log(hex.EncodeToString(resp.Data))
|
||||
//
|
||||
//t.Log(result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user