Skip to content

Commit

Permalink
Update libzk13.go
Browse files Browse the repository at this point in the history
  • Loading branch information
twingdev committed Apr 9, 2024
1 parent 1046fc7 commit b1c2c12
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions zkp/libzk13.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package zkp
import (
"crypto/rand"
"fmt"
"github.com/davecgh/go-spew/spew"
"github.com/zeebo/blake3"
"math/big"
)
Expand Down Expand Up @@ -43,7 +42,6 @@ func NewZK13(secretBaggage string, bits int) *ZK13 {
hash := blake3.Sum512([]byte(secretBaggage))
Hs := new(big.Int).SetBytes(hash[:])
z.Hs = Hs
spew.Dump(z)
return z
}

Expand All @@ -66,7 +64,6 @@ func (z *ZK13) Prover(nonce *big.Int) (*Proof, error) {
P: P,
Nonce: nonce,
}
spew.Dump(proof)
return proof, nil
}

Expand Down

0 comments on commit b1c2c12

Please sign in to comment.