aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/rlpx.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-01-04 15:51:12 +0800
committerGitHub <noreply@github.com>2019-01-04 15:51:12 +0800
commit391d4cb9b53eb9f71862cbb8a6cca332d5a76f94 (patch)
tree7697f49be5353066df0968ff8af4169dfda2cdb1 /p2p/rlpx.go
parent3f421aca54bb5216e0f949966481fa4516c52273 (diff)
parent8ec344bf604a56e4bd313660448345708c5aeb51 (diff)
downloaddexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar
dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.gz
dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.bz2
dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.lz
dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.xz
dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.zst
dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.zip
Merge pull request #18390 from realdave/remove-sha3-pkg
vendor, crypto, swarm: switch over to upstream sha3 package
Diffstat (limited to 'p2p/rlpx.go')
-rw-r--r--p2p/rlpx.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/p2p/rlpx.go b/p2p/rlpx.go
index 22a27dd96..67cc1d9bf 100644
--- a/p2p/rlpx.go
+++ b/p2p/rlpx.go
@@ -39,9 +39,9 @@ import (
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto/ecies"
"github.com/ethereum/go-ethereum/crypto/secp256k1"
- "github.com/ethereum/go-ethereum/crypto/sha3"
"github.com/ethereum/go-ethereum/rlp"
"github.com/golang/snappy"
+ "golang.org/x/crypto/sha3"
)
const (
@@ -253,10 +253,10 @@ func (h *encHandshake) secrets(auth, authResp []byte) (secrets, error) {
}
// setup sha3 instances for the MACs
- mac1 := sha3.NewKeccak256()
+ mac1 := sha3.NewLegacyKeccak256()
mac1.Write(xor(s.MAC, h.respNonce))
mac1.Write(auth)
- mac2 := sha3.NewKeccak256()
+ mac2 := sha3.NewLegacyKeccak256()
mac2.Write(xor(s.MAC, h.initNonce))
mac2.Write(authResp)
if h.initiator {