diff options
Diffstat (limited to 'nizk/schnorr/schnorr.go')
-rw-r--r-- | nizk/schnorr/schnorr.go | 4 |
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 +} |