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