func ECDH[P Point[P]](c *Curve[P], k *PrivateKey, peer *PublicKey) ([]byte, error)
type Curve[P Point[P]] struct { N []byte // contains filtered or unexported fields }
func P224() *Curve[*nistec.P224Point]
func P256() *Curve[*nistec.P256Point]
func P384() *Curve[*nistec.P384Point]
func P521() *Curve[*nistec.P521Point]
Point is a generic constraint for the nistec Point types.
type Point[P any] interface { *nistec.P224Point | *nistec.P256Point | *nistec.P384Point | *nistec.P521Point Bytes() []byte BytesX() ([]byte, error) SetBytes([]byte) (P, error) ScalarMult(P, []byte) (P, error) ScalarBaseMult([]byte) (P, error) }
type PrivateKey struct {
// contains filtered or unexported fields
}
func GenerateKey[P Point[P]](c *Curve[P], rand io.Reader) (*PrivateKey, error)
GenerateKey generates a new ECDSA private key pair for the specified curve.
func NewPrivateKey[P Point[P]](c *Curve[P], key []byte) (*PrivateKey, error)
func (priv *PrivateKey) Bytes() []byte
func (priv *PrivateKey) PublicKey() *PublicKey
type PublicKey struct {
// contains filtered or unexported fields
}
func NewPublicKey[P Point[P]](c *Curve[P], key []byte) (*PublicKey, error)
func (pub *PublicKey) Bytes() []byte