type github.com/golang-jwt/jwt/v5.SigningMethodRSA

14 uses

	github.com/golang-jwt/jwt/v5 (current package)
		rsa.go#L11: type SigningMethodRSA struct {
		rsa.go#L18: 	SigningMethodRS256 *SigningMethodRSA
		rsa.go#L19: 	SigningMethodRS384 *SigningMethodRSA
		rsa.go#L20: 	SigningMethodRS512 *SigningMethodRSA
		rsa.go#L25: 	SigningMethodRS256 = &SigningMethodRSA{"RS256", crypto.SHA256}
		rsa.go#L31: 	SigningMethodRS384 = &SigningMethodRSA{"RS384", crypto.SHA384}
		rsa.go#L37: 	SigningMethodRS512 = &SigningMethodRSA{"RS512", crypto.SHA512}
		rsa.go#L43: func (m *SigningMethodRSA) Alg() string {
		rsa.go#L49: func (m *SigningMethodRSA) Verify(signingString string, sig []byte, key interface{}) error {
		rsa.go#L70: func (m *SigningMethodRSA) Sign(signingString string, key interface{}) ([]byte, error) {
		rsa_pss.go#L14: 	*SigningMethodRSA
		rsa_pss.go#L33: 		SigningMethodRSA: &SigningMethodRSA{
		rsa_pss.go#L50: 		SigningMethodRSA: &SigningMethodRSA{
		rsa_pss.go#L67: 		SigningMethodRSA: &SigningMethodRSA{