diff options
author | Özgür Kesim <oec@kesim.org> | 2024-03-29 17:26:37 +0100 |
---|---|---|
committer | Özgür Kesim <oec@kesim.org> | 2024-03-29 17:26:37 +0100 |
commit | b01505ac50c87517f7b184bc166518b3602931a5 (patch) | |
tree | 6c4fcccc6683399c0b0b4afeafdba0ec58352c79 | |
parent | 610efa378df18ca37367838acd9a133f4dcbf3c2 (diff) |
stage1: -slight reorg
-rw-r--r-- | nizk/stage1/stage1.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nizk/stage1/stage1.go b/nizk/stage1/stage1.go index 691ea74..ed1acc2 100644 --- a/nizk/stage1/stage1.go +++ b/nizk/stage1/stage1.go @@ -20,13 +20,13 @@ type Statement struct { } type Commitment struct { - X *Point - Y *Point - Z *Point - R *Point A *Point B *Point C *Point + R *Point + X *Point + Y *Point + Z *Point } func NewStatement(x, y, r, α, β *Scalar, plus bool) *Statement { |