aboutsummaryrefslogtreecommitdiff
path: root/nizk/schnorr/schnorr.go
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@kesim.org>2024-11-11 21:28:12 +0100
committerÖzgür Kesim <oec@kesim.org>2024-11-11 21:28:12 +0100
commit4adec77feea7e9ec45ca43084383d85de450518b (patch)
tree446ecf80204c6a1b755547e121f1f8450c99f6ae /nizk/schnorr/schnorr.go
parent7813100e5429ca486d6310f8a04d7a0d11325f2e (diff)
refactoring in progress
Diffstat (limited to 'nizk/schnorr/schnorr.go')
-rw-r--r--nizk/schnorr/schnorr.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/nizk/schnorr/schnorr.go b/nizk/schnorr/schnorr.go
index 124155a..ad42770 100644
--- a/nizk/schnorr/schnorr.go
+++ b/nizk/schnorr/schnorr.go
@@ -3,7 +3,7 @@
package schnorr
import (
- . "kesim.org/seal/nizk"
+ . "kesim.org/seal/common"
)
type Statement Scalar
@@ -74,4 +74,4 @@ func (c *Commitment) Verify(p *Proof, id Bytes) bool {
// Return true if g^v == g^r*g^(x*h)
return p.V.Equal(grgxh)
-} \ No newline at end of file
+}