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