Documentation ¶
Overview ¶
Package ecdsa implements signature algorithm ECDSA for COSE as defined in RFC9053. https://datatracker.ietf.org/doc/html/rfc9053#name-ecdsa.
Index ¶
- func CheckKey(k key.Key) error
- func DecodeSignature(curve elliptic.Curve, sig []byte) (r, s *big.Int, err error)
- func EncodeSignature(curve elliptic.Curve, r, s *big.Int) ([]byte, error)
- func GenerateKey(alg int) (key.Key, error)
- func KeyFromPrivate(pk *goecdsa.PrivateKey) (key.Key, error)
- func KeyFromPublic(pk *goecdsa.PublicKey) (key.Key, error)
- func KeyToPrivate(k key.Key) (*goecdsa.PrivateKey, error)
- func KeyToPublic(k key.Key) (*goecdsa.PublicKey, error)
- func NewSigner(k key.Key) (key.Signer, error)
- func NewVerifier(k key.Key) (key.Verifier, error)
- func ToCompressedKey(k key.Key) (key.Key, error)
- func ToPublicKey(k key.Key) (key.Key, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DecodeSignature ¶
DecodeSignature decodes (r, s) from a signature bytes using the method specified by RFC 8152 section 8.1.
func EncodeSignature ¶
EncodeSignature encodes (r, s) into a signature bytes using the method specified by RFC 8152 section 8.1.
func GenerateKey ¶
GenerateKey generates a new Key with given algorithm for ECDSA. alg is one of the iana.AlgorithmES* constants.
func KeyFromPrivate ¶
func KeyFromPrivate(pk *goecdsa.PrivateKey) (key.Key, error)
KeyFromPrivate returns a private Key with given ecdsa.PrivateKey.
func KeyFromPublic ¶
KeyFromPublic returns a public Key with given ecdsa.PublicKey.
func KeyToPrivate ¶ added in v0.5.0
func KeyToPrivate(k key.Key) (*goecdsa.PrivateKey, error)
KeyToPrivate returns a ecdsa.PrivateKey for the given Key.
func KeyToPublic ¶ added in v0.5.0
KeyToPublic returns a ecdsa.PublicKey for the given key.Key.
func NewVerifier ¶
NewVerifier creates a key.Verifier for the given public key.
func ToCompressedKey ¶ added in v0.5.0
ToCompressedKey converts the given key to a compressed Key. It can be used in Recipient.
Types ¶
This section is empty.