aboutsummaryrefslogtreecommitdiffstats
path: root/ethcrypto
diff options
context:
space:
mode:
Diffstat (limited to 'ethcrypto')
-rw-r--r--ethcrypto/crypto.go5
-rw-r--r--ethcrypto/crypto_test.go2
-rw-r--r--ethcrypto/key_manager.go3
-rw-r--r--ethcrypto/key_store.go3
-rw-r--r--ethcrypto/keypair.go2
-rw-r--r--ethcrypto/keyring.go3
-rw-r--r--ethcrypto/keys_test.go2
7 files changed, 11 insertions, 9 deletions
diff --git a/ethcrypto/crypto.go b/ethcrypto/crypto.go
index ebc8b171b..068e066d5 100644
--- a/ethcrypto/crypto.go
+++ b/ethcrypto/crypto.go
@@ -4,10 +4,9 @@ import (
"crypto/sha256"
"code.google.com/p/go.crypto/ripemd160"
- "github.com/ethereum/eth-go/ethutil"
- "github.com/obscuren/sha3"
-
+ "github.com/ethereum/go-ethereum/ethutil"
"github.com/obscuren/secp256k1-go"
+ "github.com/obscuren/sha3"
)
// TODO refactor, remove (bin)
diff --git a/ethcrypto/crypto_test.go b/ethcrypto/crypto_test.go
index 7323e1646..689bcecb4 100644
--- a/ethcrypto/crypto_test.go
+++ b/ethcrypto/crypto_test.go
@@ -4,7 +4,7 @@ import (
"bytes"
"testing"
- "github.com/ethereum/eth-go/ethutil"
+ "github.com/ethereum/go-ethereum/ethutil"
)
// FIPS 202 test (reverted back to FIPS 180)
diff --git a/ethcrypto/key_manager.go b/ethcrypto/key_manager.go
index 066a62aab..109768423 100644
--- a/ethcrypto/key_manager.go
+++ b/ethcrypto/key_manager.go
@@ -2,8 +2,9 @@ package ethcrypto
import (
"fmt"
- "github.com/ethereum/eth-go/ethutil"
"sync"
+
+ "github.com/ethereum/go-ethereum/ethutil"
)
type KeyManager struct {
diff --git a/ethcrypto/key_store.go b/ethcrypto/key_store.go
index 460f0c978..14d11011f 100644
--- a/ethcrypto/key_store.go
+++ b/ethcrypto/key_store.go
@@ -2,11 +2,12 @@ package ethcrypto
import (
"fmt"
- "github.com/ethereum/eth-go/ethutil"
"io/ioutil"
"os"
"path"
"strings"
+
+ "github.com/ethereum/go-ethereum/ethutil"
)
type KeyStore interface {
diff --git a/ethcrypto/keypair.go b/ethcrypto/keypair.go
index ebb982306..613f65d8c 100644
--- a/ethcrypto/keypair.go
+++ b/ethcrypto/keypair.go
@@ -3,7 +3,7 @@ package ethcrypto
import (
"strings"
- "github.com/ethereum/eth-go/ethutil"
+ "github.com/ethereum/go-ethereum/ethutil"
"github.com/obscuren/secp256k1-go"
)
diff --git a/ethcrypto/keyring.go b/ethcrypto/keyring.go
index d3399d13d..35733808b 100644
--- a/ethcrypto/keyring.go
+++ b/ethcrypto/keyring.go
@@ -2,9 +2,10 @@ package ethcrypto
import (
"fmt"
- "github.com/ethereum/eth-go/ethutil"
"io/ioutil"
"strings"
+
+ "github.com/ethereum/go-ethereum/ethutil"
)
type KeyRing struct {
diff --git a/ethcrypto/keys_test.go b/ethcrypto/keys_test.go
index 3ebf4e818..8aedc1ee1 100644
--- a/ethcrypto/keys_test.go
+++ b/ethcrypto/keys_test.go
@@ -1,7 +1,7 @@
package ethcrypto
import (
- "github.com/ethereum/eth-go/ethdb"
+ "github.com/ethereum/go-ethereum/ethdb"
// "io/ioutil"
"fmt"
"os"