From 2a0e1bb32bc47b6c130a2f4651f37b1692951d55 Mon Sep 17 00:00:00 2001 From: Matthew Halpern Date: Mon, 18 Feb 2019 04:09:07 -0800 Subject: [PATCH] crypto/ecies: remove unused function (#19096) --- crypto/ecies/ecies_test.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/crypto/ecies/ecies_test.go b/crypto/ecies/ecies_test.go index f33f204d5b..6bd57145db 100644 --- a/crypto/ecies/ecies_test.go +++ b/crypto/ecies/ecies_test.go @@ -93,19 +93,6 @@ func cmpPublic(pub1, pub2 PublicKey) bool { return bytes.Equal(pub1Out, pub2Out) } -// cmpPrivate returns true if the two private keys are the same. -func cmpPrivate(prv1, prv2 *PrivateKey) bool { - if prv1 == nil || prv1.D == nil { - return false - } else if prv2 == nil || prv2.D == nil { - return false - } else if prv1.D.Cmp(prv2.D) != 0 { - return false - } else { - return cmpPublic(prv1.PublicKey, prv2.PublicKey) - } -} - // Validate the ECDH component. func TestSharedKey(t *testing.T) { prv1, err := GenerateKey(rand.Reader, DefaultCurve, nil)