Archive repository

This commit is contained in:
arnaucube
2021-06-13 18:37:08 +02:00
parent aec3022978
commit 478006134d
22 changed files with 60 additions and 62 deletions

View File

@@ -1,5 +1,5 @@
## Bn128
[![GoDoc](https://godoc.org/github.com/arnaucube/go-snark/bn128?status.svg)](https://godoc.org/github.com/arnaucube/go-snark/bn128) bn128
[![GoDoc](https://godoc.org/github.com/arnaucube/go-snark-study/bn128?status.svg)](https://godoc.org/github.com/arnaucube/go-snark-study/bn128) bn128
Implementation of the bn128 pairing in Go.

View File

@@ -4,7 +4,7 @@ import (
"errors"
"math/big"
"github.com/arnaucube/go-snark/fields"
"github.com/arnaucube/go-snark-study/fields"
)
// Bn128 is the data structure of the BN128

View File

@@ -3,7 +3,7 @@ package bn128
import (
"math/big"
"github.com/arnaucube/go-snark/fields"
"github.com/arnaucube/go-snark-study/fields"
)
type G1 struct {

View File

@@ -3,7 +3,7 @@ package bn128
import (
"math/big"
"github.com/arnaucube/go-snark/fields"
"github.com/arnaucube/go-snark-study/fields"
)
type G2 struct {