diff options
author | Pavol Rusnak <stick@gk2.sk> | 2015-07-30 17:26:39 +0800 |
---|---|---|
committer | Pavol Rusnak <stick@gk2.sk> | 2015-07-30 18:47:45 +0800 |
commit | 3f07afbbd21a0458830461f06d818aa1f9fa51fe (patch) | |
tree | 416773e38117a518c391d8a08013dddb2ae83577 /crypto/ecies/ecies_test.go | |
parent | e7f4232b10034d291d1757b96e6277908618223c (diff) | |
download | dexon-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.gz dexon-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.zst dexon-3f07afbbd21a0458830461f06d818aa1f9fa51fe.zip |
remove elliptic.P224 usage
Fedora/RedHat distros comply with US patent law and remove this curve,
which makes it impossible to run ethereum with distro provided Golang.
File crypto/ecies/README claims it is unsupported anyway.
Diffstat (limited to 'crypto/ecies/ecies_test.go')
-rw-r--r-- | crypto/ecies/ecies_test.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/ecies/ecies_test.go b/crypto/ecies/ecies_test.go index 762124954..1c391f938 100644 --- a/crypto/ecies/ecies_test.go +++ b/crypto/ecies/ecies_test.go @@ -408,11 +408,6 @@ type testCase struct { var testCases = []testCase{ testCase{ - Curve: elliptic.P224(), - Name: "P224", - Expected: false, - }, - testCase{ Curve: elliptic.P256(), Name: "P256", Expected: true, |