diff --git a/ecdh_test.go b/ecdh_test.go index 13f906c..7309055 100644 --- a/ecdh_test.go +++ b/ecdh_test.go @@ -1,4 +1,3 @@ -// Copyright (c) 2016 Andreas Auernhammer. All rights reserved. // Use of this source code is governed by a license that can be // found in the LICENSE file. diff --git a/generic.go b/generic.go index 2a48271..53eaf82 100644 --- a/generic.go +++ b/generic.go @@ -11,12 +11,6 @@ import ( "math/big" ) -// Point represents a generic elliptic curve Point with a -// X and a Y coordinate. -type Point struct { - X, Y *big.Int -} - // Generic creates a new ecdh.KeyExchange with // generic elliptic.Curve implementations. func Generic(c elliptic.Curve) KeyExchange {