-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmsg.go
More file actions
74 lines (64 loc) · 1.31 KB
/
Copy pathmsg.go
File metadata and controls
74 lines (64 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package GoCryptoTCP
import (
"encoding/json"
)
var (
ApplyCrypto = 1
AcceptCrypto = 2
RejectCrypto = 3
CryptoMsgRSA = 4
CryptoMsgAES = 5
)
type Msg struct {
MsgType int `json:"msgType"`
From int `json:"from"`
To int `json:"to"`
Body []byte `json:"body,omitempty"`
RSAPubKey []byte `json:"RSAPubKey,omitempty"`
AESKey []byte `json:"AESKey,omitempty"`
Sign []byte `json:"sign,omitempty"`
}
func NewMsg(tp, fm, to int, body, RSAPubKey, AESKey, Sign []byte) *Msg {
return &Msg{
MsgType: tp,
From: fm,
To: to,
Body: body,
RSAPubKey: RSAPubKey,
AESKey: AESKey,
Sign: Sign,
}
}
func NewUpgradeMsg(msgType, to int, body, RSAPubKey, AESKey []byte) *Msg {
return &Msg{
MsgType: msgType,
To: to,
Body: body,
RSAPubKey: RSAPubKey,
AESKey: AESKey,
}
}
func NewCryptoMsg(msgType, from, to int, body []byte) *Msg {
return &Msg{
MsgType: msgType,
From: from,
To: to,
Body: body,
}
}
func (m *Msg) Marshal() []byte {
j, err := json.Marshal(m)
CheckFatalErr(err)
return j
}
func MsgUnmarshal(j []byte) (*Msg, error) {
var m Msg
err := json.Unmarshal(j, &m)
return &m, err
}
func (m *Msg) String() string {
return string(m.Marshal())
}
func (m *Msg) BodyString() string {
return string(m.Body)
}