type crypto/internal/fips140/ecdsa.Signature
12 uses
crypto/internal/fips140/ecdsa (current package)
cast.go#L78: want := &Signature{
cast.go#L110: want := &Signature{
ecdsa.go#L259: type Signature struct {
ecdsa.go#L267: func Sign[P Point[P], H hash.Hash](c *Curve[P], h func() H, priv *PrivateKey, rand io.Reader, hash []byte) (*Signature, error) {
ecdsa.go#L300: func SignDeterministic[P Point[P], H hash.Hash](c *Curve[P], h func() H, priv *PrivateKey, hash []byte) (*Signature, error) {
ecdsa.go#L318: func signGeneric[P Point[P]](c *Curve[P], priv *PrivateKey, drbg *hmacDRBG, hash []byte) (*Signature, error) {
ecdsa.go#L365: return &Signature{r.Bytes(c.N), s.Bytes(c.N)}, nil
ecdsa.go#L432: func Verify[P Point[P]](c *Curve[P], pub *PublicKey, hash []byte, sig *Signature) error {
ecdsa.go#L441: func verifyGeneric[P Point[P]](c *Curve[P], pub *PublicKey, hash []byte, sig *Signature) error {
ecdsa_noasm.go#L9: func sign[P Point[P]](c *Curve[P], priv *PrivateKey, drbg *hmacDRBG, hash []byte) (*Signature, error) {
ecdsa_noasm.go#L13: func verify[P Point[P]](c *Curve[P], pub *PublicKey, hash []byte, sig *Signature) error {
crypto/ecdsa
ecdsa.go#L533: if err := ecdsa.Verify(c, k, hash, &ecdsa.Signature{R: r, S: s}); err != nil {