type crypto.SignerOpts

12 uses

	crypto (current package)
		crypto.go#L178: 	Sign(rand io.Reader, digest []byte, opts SignerOpts) (signature []byte, err error)
		crypto.go#L182: type SignerOpts interface {

	crypto/ecdsa
		ecdsa.go#L115: func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {

	crypto/ed25519
		ed25519.go#L88: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {

	crypto/rsa
		rsa.go#L144: func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {

	crypto/tls
		handshake_client.go#L618: 		signOpts := crypto.SignerOpts(sigHash)
		handshake_client_tls13.go#L596: 	signOpts := crypto.SignerOpts(sigHash)
		handshake_server_tls13.go#L632: 	signOpts := crypto.SignerOpts(sigHash)
		key_agreement.go#L205: 	signOpts := crypto.SignerOpts(sigHash)

	crypto/x509
		x509.go#L2219: 	var signerOpts crypto.SignerOpts = hashFunc
		x509.go#L2847: 	var signerOpts crypto.SignerOpts = hashFunc

	golang.org/x/crypto/ssh/agent
		client.go#L774: func (s *agentKeyringSigner) SignWithOpts(rand io.Reader, data []byte, opts crypto.SignerOpts) (*ssh.Signature, error) {