diff options
Diffstat (limited to 'core/crypto')
-rw-r--r-- | core/crypto/dkg/constant.go | 2 | ||||
-rw-r--r-- | core/crypto/dkg/dkg.go | 8 | ||||
-rw-r--r-- | core/crypto/dkg/dkg_test.go | 8 | ||||
-rw-r--r-- | core/crypto/dkg/utils.go | 4 | ||||
-rw-r--r-- | core/crypto/ecdsa/ecdsa.go | 6 | ||||
-rw-r--r-- | core/crypto/ecdsa/ecdsa_test.go | 4 | ||||
-rw-r--r-- | core/crypto/interfaces.go | 2 | ||||
-rw-r--r-- | core/crypto/utils.go | 4 |
8 files changed, 19 insertions, 19 deletions
diff --git a/core/crypto/dkg/constant.go b/core/crypto/dkg/constant.go index 37d873d..3f6627b 100644 --- a/core/crypto/dkg/constant.go +++ b/core/crypto/dkg/constant.go @@ -18,7 +18,7 @@ package dkg import ( - "github.com/dexon-foundation/bls/ffi/go/bls" + "github.com/byzantine-lab/bls/ffi/go/bls" ) const ( diff --git a/core/crypto/dkg/dkg.go b/core/crypto/dkg/dkg.go index ab43f51..7e5a95b 100644 --- a/core/crypto/dkg/dkg.go +++ b/core/crypto/dkg/dkg.go @@ -24,11 +24,11 @@ import ( "sync" "sync/atomic" - "github.com/dexon-foundation/bls/ffi/go/bls" - "github.com/dexon-foundation/dexon/rlp" + "github.com/byzantine-lab/bls/ffi/go/bls" + "github.com/byzantine-lab/go-tangerine/rlp" - "github.com/dexon-foundation/dexon-consensus/common" - "github.com/dexon-foundation/dexon-consensus/core/crypto" + "gitlab.com/byzantine-lab/tangerine-consensus/common" + "gitlab.com/byzantine-lab/tangerine-consensus/core/crypto" ) var ( diff --git a/core/crypto/dkg/dkg_test.go b/core/crypto/dkg/dkg_test.go index 84dc2d4..8c911f3 100644 --- a/core/crypto/dkg/dkg_test.go +++ b/core/crypto/dkg/dkg_test.go @@ -25,12 +25,12 @@ import ( "sync" "testing" - "github.com/dexon-foundation/bls/ffi/go/bls" - "github.com/dexon-foundation/dexon/rlp" + "github.com/byzantine-lab/bls/ffi/go/bls" + "github.com/byzantine-lab/go-tangerine/rlp" "github.com/stretchr/testify/suite" - "github.com/dexon-foundation/dexon-consensus/common" - "github.com/dexon-foundation/dexon-consensus/core/crypto" + "gitlab.com/byzantine-lab/tangerine-consensus/common" + "gitlab.com/byzantine-lab/tangerine-consensus/core/crypto" ) type DKGTestSuite struct { diff --git a/core/crypto/dkg/utils.go b/core/crypto/dkg/utils.go index 9e470f0..3f9c123 100644 --- a/core/crypto/dkg/utils.go +++ b/core/crypto/dkg/utils.go @@ -22,9 +22,9 @@ import ( "fmt" "math/rand" - "github.com/dexon-foundation/bls/ffi/go/bls" + "github.com/byzantine-lab/bls/ffi/go/bls" - "github.com/dexon-foundation/dexon-consensus/core/crypto" + "gitlab.com/byzantine-lab/tangerine-consensus/core/crypto" ) // PartialSignature is a partial signature in DKG+TSIG protocol. diff --git a/core/crypto/ecdsa/ecdsa.go b/core/crypto/ecdsa/ecdsa.go index 9da5f4f..8ac335d 100644 --- a/core/crypto/ecdsa/ecdsa.go +++ b/core/crypto/ecdsa/ecdsa.go @@ -20,10 +20,10 @@ package ecdsa import ( "crypto/ecdsa" - dexCrypto "github.com/dexon-foundation/dexon/crypto" + dexCrypto "github.com/byzantine-lab/go-tangerine/crypto" - "github.com/dexon-foundation/dexon-consensus/common" - "github.com/dexon-foundation/dexon-consensus/core/crypto" + "gitlab.com/byzantine-lab/tangerine-consensus/common" + "gitlab.com/byzantine-lab/tangerine-consensus/core/crypto" ) const cryptoType = "ecdsa" diff --git a/core/crypto/ecdsa/ecdsa_test.go b/core/crypto/ecdsa/ecdsa_test.go index ada27b2..58c35ca 100644 --- a/core/crypto/ecdsa/ecdsa_test.go +++ b/core/crypto/ecdsa/ecdsa_test.go @@ -20,8 +20,8 @@ package ecdsa import ( "testing" - "github.com/dexon-foundation/dexon-consensus/common" - "github.com/dexon-foundation/dexon-consensus/core/crypto" + "gitlab.com/byzantine-lab/tangerine-consensus/common" + "gitlab.com/byzantine-lab/tangerine-consensus/core/crypto" "github.com/stretchr/testify/suite" ) diff --git a/core/crypto/interfaces.go b/core/crypto/interfaces.go index f3e01e4..80ed8a9 100644 --- a/core/crypto/interfaces.go +++ b/core/crypto/interfaces.go @@ -18,7 +18,7 @@ package crypto import ( - "github.com/dexon-foundation/dexon-consensus/common" + "gitlab.com/byzantine-lab/tangerine-consensus/common" ) // Signature is the basic signature type in DEXON. diff --git a/core/crypto/utils.go b/core/crypto/utils.go index 59e91f5..303d9d8 100644 --- a/core/crypto/utils.go +++ b/core/crypto/utils.go @@ -21,9 +21,9 @@ import ( "encoding/hex" "fmt" - "github.com/dexon-foundation/dexon/crypto" + "github.com/byzantine-lab/go-tangerine/crypto" - "github.com/dexon-foundation/dexon-consensus/common" + "gitlab.com/byzantine-lab/tangerine-consensus/common" ) var ( |