Versions in this module Expand all Collapse all v2 v2.3.3 Oct 19, 2023 Changes in this version + func New(keyType crypto.KeyType) (crypto.PrivateKey, error) + type PrivateKey struct + K *ecdsa.PrivateKey + func (sk *PrivateKey) Bytes() ([]byte, error) + func (sk *PrivateKey) PublicKey() crypto.PublicKey + func (sk *PrivateKey) Sign(digest []byte) ([]byte, error) + func (sk *PrivateKey) SignWithOpts(msg []byte, opts *crypto.SignOpts) ([]byte, error) + func (sk *PrivateKey) String() (string, error) + func (sk *PrivateKey) ToStandardKey() crypto2.PrivateKey + func (sk *PrivateKey) Type() crypto.KeyType + type PublicKey struct + K *ecdsa.PublicKey + func (pk *PublicKey) Bytes() ([]byte, error) + func (pk *PublicKey) String() (string, error) + func (pk *PublicKey) ToStandardKey() crypto2.PublicKey + func (pk *PublicKey) Type() crypto.KeyType + func (pk *PublicKey) Verify(digest []byte, sig []byte) (bool, error) + func (pk *PublicKey) VerifyWithOpts(msg []byte, sig []byte, opts *crypto.SignOpts) (bool, error) + type Sig struct + R *big.Int + S *big.Int