-
Notifications
You must be signed in to change notification settings - Fork 38
/
table_complaint.go
193 lines (175 loc) · 6.2 KB
/
table_complaint.go
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package main
import (
"errors"
table_complaint "github.com/sec-bit/zkPoD-lib/pod_go/table/complaint"
"github.com/sec-bit/zkPoD-lib/pod_go/types"
)
type PoDAliceTC struct {
AliceSession *table_complaint.AliceSession `json:"AliceSession"`
}
// AliceNewSessForTC prepares Alice's session while mode is table_complaint.
//
// It is provides an interface for NewAliceSession.
//
// Return:
// If no error occurs, return a Alice's session and a nil error.
// Otherwise, return a nil session and the non-nil error.
func AliceNewSessForTC(publishPath string, AliceID [40]uint8, BobID [40]uint8, Log ILogger) (PoDAliceTC, error) {
var tc PoDAliceTC
rs, err := pathExists(publishPath)
if err != nil {
Log.Warnf("failed to check. err=%v", err)
return tc, err
}
if !rs {
Log.Warnf("the path=%v does not exist.", publishPath)
return tc, errors.New("the path does not exist")
}
Log.Debugf("publishPath=%v", publishPath)
tc.AliceSession, err = table_complaint.NewAliceSession(publishPath, AliceID, BobID)
if err != nil {
Log.Warnf("failed to create session for Alice. err=%v", err)
return tc, errors.New("failed to create session for Alice")
}
Log.Debugf("success to create session for Alice.")
return tc, nil
}
// AliceVerifyReq verifies request file and generates response file for Alice while mode is table_complaint.
//
// It is provides an interface for OnRequest.
//
// Return:
// If verify transaction requset and generate transaction response successfully, return true.
// Otherwise, return false.
func (tc PoDAliceTC) AliceVerifyReq(requestFile string, responseFile string, Log ILogger) bool {
err := tc.AliceSession.OnRequest(requestFile, responseFile)
if err != nil {
Log.Warnf("verify request and generate response....Failed. err=%v", err)
return false
}
Log.Debugf("success to verify request and generate response")
return true
}
// AliceVerifyReceipt verifies receipt file and generate secret file for Alice while mode is table_complaint.
//
// It is provides an interface for OnReceipt.
//
// Return:
// If verify receipt file and generate secret file successfully, return true.
// Otherwise, return false.
func (tc PoDAliceTC) AliceVerifyReceipt(receiptFile string, secretFile string, Log ILogger) bool {
err := tc.AliceSession.OnReceipt(receiptFile, secretFile)
if err != nil {
Log.Warnf("Verify receipt file and generate secret file.....Failed. err=%v", err)
return false
}
Log.Debugf("success to verify receipt and generate secret. receiptFile=%v, secretFile=%v", receiptFile, secretFile)
return true
}
type PoDBobTC struct {
BobSession *table_complaint.BobSession `json:"BobSession"`
Demands []Demand `json:"demands"`
}
// BobNewSessForTC prepares Bob's session while mode is table_complaint.
//
// It is provides an interface for NewBobSession.
//
// Return:
// If no error occurs, return a PoDBob struct and a nil error.
// Otherwise, return a nil session and the non-nil error.
func BobNewSessForTC(demandArr []Demand, tableBulletin string, tablePublicPath string, AliceID [40]uint8, BobID [40]uint8, Log ILogger) (PoDBobTC, error) {
var tc PoDBobTC
demands := make([]types.Range, 0)
for _, d := range demandArr {
demands = append(demands, types.Range{d.DemandStart, d.DemandCount})
}
tc.Demands = demandArr
session, err := table_complaint.NewBobSession(tableBulletin, tablePublicPath, AliceID, BobID, demands)
if err != nil {
Log.Warnf("Failed to create session for Bob. err=%v", err)
return tc, errors.New("Failed to create session for Bob")
}
tc.BobSession = session
Log.Debugf("success to create session for Bob.")
return tc, nil
}
// BobNewReq creates request file for Bob while mode is table_complaint.
//
// It is provides an interface for GetRequest.
//
// Return:
// If no error occurs, generate a request file and return a nil error.
// Otherwise, return the non-nil error.
func (tc PoDBobTC) BobNewReq(requestFile string, Log ILogger) error {
err := tc.BobSession.GetRequest(requestFile)
if err != nil {
Log.Warnf("Failed to create request file. err=%v", err)
return errors.New("Failed to create request file")
}
Log.Debugf("success to create request file for Bob")
return nil
}
// BobVerifyResp verifies response data for Bob while mode is table_complaint.
//
// It is provides an interface for OnResponse.
//
// Return:
// If verify response and generate receipt successfully, return true.
// Otherwise, return false.
func (tc PoDBobTC) BobVerifyResp(responseFile string, receiptFile string, Log ILogger) bool {
err := tc.BobSession.OnResponse(responseFile, receiptFile)
if err != nil {
Log.Warnf("Verify response failure. err=%v", err)
return false
}
Log.Debugf("success to verify response and generate receipt. responseFile=%v, receiptFile=%v", responseFile, receiptFile)
return true
}
// BobVerifySecret verifies secret for Bob while mode is table_complaint.
//
// It is provides an interface for OnSecret.
//
// Return:
// If verify secret successfully, return true.
// Otherwise, return false.
func (tc PoDBobTC) BobVerifySecret(secretFile string, Log ILogger) bool {
err := tc.BobSession.OnSecret(secretFile)
if err != nil {
Log.Warnf("Verify secret failure. err=%v", err)
return false
}
Log.Debugf("success to verify secret. secretFile=%v", secretFile)
return true
}
// BobGeneClaim generates claim with incorrect secret for Bob while mode is table_complaint.
//
// It is provides an interface for GenerateClaim.
//
// Return:
// If generate claim successfully, return true.
// Otherwise, return false.
func (tc PoDBobTC) BobGeneClaim(claimFile string, Log ILogger) bool {
err := tc.BobSession.GenerateClaim(claimFile)
if err != nil {
Log.Warnf("generate claim failure. err=%v", err)
return false
}
Log.Debugf("success to generate claim. claimFile=%v", claimFile)
return true
}
// BobDecrypt decrypts file for Bob while mode is table_complaint.
//
// It is provides an interface for GenerateClaim.
//
// Return:
// If decrypt file successfully, return true.
// Otherwise, return false.
func (tc PoDBobTC) BobDecrypt(outFile string, Log ILogger) bool {
err := tc.BobSession.Decrypt(outFile)
if err != nil {
Log.Warnf("Failed to decrypt file. err=%v", err)
return false
}
Log.Debugf("success to decrypt file. outFile=%v", outFile)
return true
}