aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ecies/ecies_test.go
diff options
context:
space:
mode:
authorPavol Rusnak <stick@gk2.sk>2015-07-30 17:26:39 +0800
committerPavol Rusnak <stick@gk2.sk>2015-07-30 18:47:45 +0800
commit3f07afbbd21a0458830461f06d818aa1f9fa51fe (patch)
tree416773e38117a518c391d8a08013dddb2ae83577 /crypto/ecies/ecies_test.go
parente7f4232b10034d291d1757b96e6277908618223c (diff)
downloadgo-tangerine-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar
go-tangerine-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.gz
go-tangerine-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.bz2
go-tangerine-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.lz
go-tangerine-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.xz
go-tangerine-3f07afbbd21a0458830461f06d818aa1f9fa51fe.tar.zst
go-tangerine-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.go5
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,