const crypto/x509.RSA

16 uses

	crypto/x509 (current package)
		x509.go#L266: 	RSA
		x509.go#L273: 	RSA:     "RSA",
		x509.go#L370: 	{MD5WithRSA, "MD5-RSA", oidSignatureMD5WithRSA, asn1.NullRawValue, RSA, crypto.MD5, false},
		x509.go#L371: 	{SHA1WithRSA, "SHA1-RSA", oidSignatureSHA1WithRSA, asn1.NullRawValue, RSA, crypto.SHA1, false},
		x509.go#L372: 	{SHA1WithRSA, "SHA1-RSA", oidISOSignatureSHA1WithRSA, asn1.NullRawValue, RSA, crypto.SHA1, false},
		x509.go#L373: 	{SHA256WithRSA, "SHA256-RSA", oidSignatureSHA256WithRSA, asn1.NullRawValue, RSA, crypto.SHA256, false},
		x509.go#L374: 	{SHA384WithRSA, "SHA384-RSA", oidSignatureSHA384WithRSA, asn1.NullRawValue, RSA, crypto.SHA384, false},
		x509.go#L375: 	{SHA512WithRSA, "SHA512-RSA", oidSignatureSHA512WithRSA, asn1.NullRawValue, RSA, crypto.SHA512, false},
		x509.go#L376: 	{SHA256WithRSAPSS, "SHA256-RSAPSS", oidSignatureRSAPSS, pssParametersSHA256, RSA, crypto.SHA256, true},
		x509.go#L377: 	{SHA384WithRSAPSS, "SHA384-RSAPSS", oidSignatureRSAPSS, pssParametersSHA384, RSA, crypto.SHA384, true},
		x509.go#L378: 	{SHA512WithRSAPSS, "SHA512-RSAPSS", oidSignatureRSAPSS, pssParametersSHA512, RSA, crypto.SHA512, true},
		x509.go#L502: 		return RSA
		x509.go#L933: 		if pubKeyAlgo != RSA {
		x509.go#L1458: 		pubType = RSA

	crypto/tls
		handshake_client.go#L1080: 		if cert.cert.PublicKeyAlgorithm == x509.RSA {
		handshake_server.go#L883: 		if certs[i].PublicKeyAlgorithm == x509.RSA {