type crypto.SignerOpts

13 uses

	crypto (current package)
		crypto.go#L198: 	Sign(rand io.Reader, digest []byte, opts SignerOpts) (signature []byte, err error)
		crypto.go#L215: 	SignMessage(rand io.Reader, msg []byte, opts SignerOpts) (signature []byte, err error)
		crypto.go#L219: type SignerOpts interface {
		crypto.go#L245: func SignMessage(signer Signer, rand io.Reader, msg []byte, opts SignerOpts) (signature []byte, err error) {

	crypto/ecdsa
		ecdsa.go#L323: func (priv *PrivateKey) Sign(random io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
		ecdsa.go#L426: func signRFC6979(priv *PrivateKey, hash []byte, opts crypto.SignerOpts) ([]byte, error) {

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

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

	crypto/tls
		handshake_client.go#L813: 			signOpts := crypto.SignerOpts(sigHash)
		handshake_client_tls13.go#L790: 	signOpts := crypto.SignerOpts(sigHash)
		handshake_server_tls13.go#L866: 	signOpts := crypto.SignerOpts(sigHash)
		key_agreement.go#L211: 		signOpts := crypto.SignerOpts(sigHash)

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