-
Notifications
You must be signed in to change notification settings - Fork 38
/
plain_complaint.go
193 lines (175 loc) · 6.25 KB
/
plain_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"
plain_complaint "github.com/sec-bit/zkPoD-lib/pod_go/plain/complaint"
"github.com/sec-bit/zkPoD-lib/pod_go/types"
)
type PoDAlicePC struct {
AliceSession *plain_complaint.AliceSession `json:"AliceSession"`
}
// AliceNewSessForPC prepares Alice's session while mode is plain_complaint.
//
// It is provides an interface for NewAliceSession.
//
// Return:
// If no error occurs, return a PoDAlicePC struct and a nil error.
// Otherwise, return a nil session and the non-nil error.
func AliceNewSessForPC(publishPath string, AliceID [40]uint8, BobID [40]uint8, Log ILogger) (PoDAlicePC, error) {
var pc PoDAlicePC
rs, err := pathExists(publishPath)
if err != nil {
Log.Warnf("Failed to check. err=%v", err)
return pc, err
}
if !rs {
Log.Warnf("the path=%v does not exist.", publishPath)
return pc, errors.New("the path does not exist")
}
Log.Debugf("publishPath=%v", publishPath)
pc.AliceSession, err = plain_complaint.NewAliceSession(publishPath, AliceID, BobID)
if err != nil {
Log.Warnf("failed to create session for Alice. err=%v", err)
return pc, errors.New("failed to create session for Alice")
}
Log.Debugf("success to create session for Alice")
return pc, nil
}
// AliceVerifyReq verifies request file and generates response file for Alice while mode is plain_complaint.
//
// It is provides an interface for OnRequest.
//
// Return:
// If verify transaction requset and generate transaction response successfully, return true.
// Otherwise, return false.
func (pc PoDAlicePC) AliceVerifyReq(requestFile string, responseFile string, Log ILogger) bool {
err := pc.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 transaction requset and generate transaction response")
return true
}
// AliceVerifyReceipt verifies receipt file and generate secret file for Alice while mode is plain_complaint.
//
// It is provides an interface for OnReceipt.
//
// Return:
// If verify receipt file and generate secret file successfully, return true.
// Otherwise, return false.
func (pc PoDAlicePC) AliceVerifyReceipt(receiptFile string, secretFile string, Log ILogger) bool {
err := pc.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 file and generate secret file. receipt file=%v, secret file=%v", receiptFile, secretFile)
return true
}
type PoDBobPC struct {
BobSession *plain_complaint.BobSession `json:"BobSession"`
Demands []Demand `json:"demands"`
}
// BobNewSessForPC prepares Bob's session while mode is plain_complaint.
//
// It is provides an interface for NewBobSession.
//
// Return:
// If no error occurs, return a PoDBobPC struct and a nil error.
// Otherwise, return a nil session and the non-nil error.
func BobNewSessForPC(demandArr []Demand, plainBulletin string, plainPublicPath string, AliceID [40]uint8, BobID [40]uint8, Log ILogger) (PoDBobPC, error) {
var pc PoDBobPC
demands := make([]types.Range, 0)
for _, d := range demandArr {
demands = append(demands, types.Range{d.DemandStart, d.DemandCount})
}
pc.Demands = demandArr
session, err := plain_complaint.NewBobSession(plainBulletin, plainPublicPath, AliceID, BobID, demands)
if err != nil {
Log.Warnf("failed to create session for Bob. err=%v", err)
return pc, errors.New("failed to create session for Bob")
}
pc.BobSession = session
Log.Debugf("success to create session for Bob")
return pc, nil
}
// BobNewReq creates request file for Bob while mode is plain_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 (pc PoDBobPC) BobNewReq(requestFile string, Log ILogger) error {
err := pc.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. filepath=%v", requestFile)
return nil
}
// BobVerifyResp verifies response data for Bob while mode is plain_complaint.
//
// It is provides an interface for OnResponse.
//
// Return:
// If verify response and generate receipt successfully, return true.
// Otherwise, return false.
func (pc PoDBobPC) BobVerifyResp(responseFile string, receiptFile string, Log ILogger) bool {
err := pc.BobSession.OnResponse(responseFile, receiptFile)
if err != nil {
Log.Warnf("failed to verify response and generate receipt. 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 plain_complaint.
//
// It is provides an interface for OnSecret.
//
// Return:
// If verify secret successfully, return true.
// Otherwise, return false.
func (pc PoDBobPC) BobVerifySecret(secretFile string, Log ILogger) bool {
err := pc.BobSession.OnSecret(secretFile)
if err != nil {
Log.Warnf("failed to verify secret. err=%v", err)
return false
}
Log.Debugf("success to verify secret")
return true
}
// BobGeneClaim generates claim with incorrect secret for Bob while mode is plain_complaint.
//
// It is provides an interface for GenerateClaim.
//
// Return:
// If generate claim successfully, return true.
// Otherwise, return false.
func (pc PoDBobPC) BobGeneClaim(claimFile string, Log ILogger) bool {
err := pc.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 plain_complaint.
//
// It is provides an interface for GenerateClaim.
//
// Return:
// If decrypt file successfully, return true.
// Otherwise, return false.
func (pc PoDBobPC) BobDecrypt(outFile string, Log ILogger) bool {
err := pc.BobSession.Decrypt(outFile)
if err != nil {
Log.Warnf("Failed to decrypt file. err=%v", err)
return false
}
Log.Debugf("success to decrypt claim. outFile=%v", outFile)
return true
}