diff options
Diffstat (limited to 'crypto/bn256')
-rw-r--r-- | crypto/bn256/bn256_fast.go | 2 | ||||
-rw-r--r-- | crypto/bn256/bn256_fuzz.go | 4 | ||||
-rw-r--r-- | crypto/bn256/bn256_slow.go | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/crypto/bn256/bn256_fast.go b/crypto/bn256/bn256_fast.go index 702521c32..75a6cfad9 100644 --- a/crypto/bn256/bn256_fast.go +++ b/crypto/bn256/bn256_fast.go @@ -7,7 +7,7 @@ // Package bn256 implements the Optimal Ate pairing over a 256-bit Barreto-Naehrig curve. package bn256 -import "github.com/dexon-foundation/dexon/crypto/bn256/cloudflare" +import bn256 "github.com/tangerine-network/go-tangerine/crypto/bn256/google" // G1 is an abstract cyclic group. The zero value is suitable for use as the // output of an operation, but cannot be used as an input. diff --git a/crypto/bn256/bn256_fuzz.go b/crypto/bn256/bn256_fuzz.go index dd838d7f2..6a969c9f8 100644 --- a/crypto/bn256/bn256_fuzz.go +++ b/crypto/bn256/bn256_fuzz.go @@ -10,8 +10,8 @@ import ( "bytes" "math/big" - cloudflare "github.com/dexon-foundation/dexon/crypto/bn256/cloudflare" - google "github.com/dexon-foundation/dexon/crypto/bn256/google" + cloudflare "github.com/tangerine-network/go-tangerine/crypto/bn256/cloudflare" + google "github.com/tangerine-network/go-tangerine/crypto/bn256/google" ) // FuzzAdd fuzzez bn256 addition between the Google and Cloudflare libraries. diff --git a/crypto/bn256/bn256_slow.go b/crypto/bn256/bn256_slow.go index 56c6437c5..9d1688dde 100644 --- a/crypto/bn256/bn256_slow.go +++ b/crypto/bn256/bn256_slow.go @@ -7,7 +7,7 @@ // Package bn256 implements the Optimal Ate pairing over a 256-bit Barreto-Naehrig curve. package bn256 -import "github.com/dexon-foundation/dexon/crypto/bn256/google" +import bn256 "github.com/tangerine-network/go-tangerine/crypto/bn256/google" // G1 is an abstract cyclic group. The zero value is suitable for use as the // output of an operation, but cannot be used as an input. |