diff options
author | Özgür Kesim <oec@kesim.org> | 2024-11-11 22:06:31 +0100 |
---|---|---|
committer | Özgür Kesim <oec@kesim.org> | 2024-11-11 22:06:31 +0100 |
commit | ad14fd02ec12a06ff72049c57364cfef22a107a2 (patch) | |
tree | 21d9105f863e9515f7fdf1f1dc2f490653d06892 /nizk/stage1.go | |
parent | 8925af0616fa3c71184f9b8ef1e44f204e8c8f26 (diff) |
marked structure relations
Diffstat (limited to 'nizk/stage1.go')
-rw-r--r-- | nizk/stage1.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/nizk/stage1.go b/nizk/stage1.go index 7e28ca9..3d07224 100644 --- a/nizk/stage1.go +++ b/nizk/stage1.go @@ -8,18 +8,23 @@ import . "kesim.org/seal/common" // for given Z, X, Y, R, C, A and B type Stage1 struct { - x *Scalar - y *Scalar - r *Scalar + x *Scalar + y *Scalar + r *Scalar + + // Original Bid α *Scalar β *Scalar bitSet bool } type Stage1Commitment struct { + // Original Commitment A *Point B *Point C *Point + + // New R *Point X *Point Y *Point |