diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-06-01 15:24:40 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-06-01 16:11:06 +0800 |
commit | 72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f (patch) | |
tree | 69e7f8440b391b306044243e1032918a18993112 /crypto/crypto_test.go | |
parent | 067dc2cbf5121541aea8c6089ac42ce07582ead1 (diff) | |
download | dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.tar dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.tar.gz dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.tar.bz2 dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.tar.lz dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.tar.xz dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.tar.zst dexon-72dd51e25a5c1553a5a7fc5f0fb84fbe3546682f.zip |
accounts/keystore, crypto: don't enforce key checks on existing keyfiles
Diffstat (limited to 'crypto/crypto_test.go')
-rw-r--r-- | crypto/crypto_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/crypto_test.go b/crypto/crypto_test.go index e518ac22d..92302948e 100644 --- a/crypto/crypto_test.go +++ b/crypto/crypto_test.go @@ -36,7 +36,7 @@ var testPrivHex = "289c2857d4598e37fb9647507e47a309d6133539bf21a8b9cb6df88fd5232 // These tests are sanity checks. // They should ensure that we don't e.g. use Sha3-224 instead of Sha3-256 // and that the sha3 library uses keccak-f permutation. -func TestSha3Hash(t *testing.T) { +func TestKeccak256Hash(t *testing.T) { msg := []byte("abc") exp, _ := hex.DecodeString("4e03657aea45a94fc7d47ba826c8d667c0d1e6e33a64a036ec44f58fa12d6c45") checkhash(t, "Sha3-256-array", func(in []byte) []byte { h := Keccak256Hash(in); return h[:] }, msg, exp) |