diff --git a/rsa_pss.go b/rsa_pss.go index db23769..c014708 100644 --- a/rsa_pss.go +++ b/rsa_pss.go @@ -15,7 +15,7 @@ type SigningMethodRSAPSS struct { // VerifyOptions is optional. If set overrides Options for rsa.VerifyPPS. // Used to accept tokens signed with rsa.PSSSaltLengthAuto, what doesn't follow // https://tools.ietf.org/html/rfc7518#section-3.5 but was used previously. - // See https://github.com/golang-jwt/jwt/issues/285#issuecomment-437451244 for details. + // See https://github.com/dgrijalva/jwt-go/issues/285#issuecomment-437451244 for details. VerifyOptions *rsa.PSSOptions } diff --git a/rsa_pss_test.go b/rsa_pss_test.go index 167731a..d1cafe7 100644 --- a/rsa_pss_test.go +++ b/rsa_pss_test.go @@ -106,7 +106,7 @@ func TestRSAPSSSaltLengthCompatibility(t *testing.T) { }, } - // Behaves as before https://github.com/golang-jwt/jwt/issues/285 fix. + // Behaves as before https://github.com/dgrijalva/jwt-go/issues/285 fix. ps256SaltLengthAuto := &jwt.SigningMethodRSAPSS{ SigningMethodRSA: jwt.SigningMethodPS256.SigningMethodRSA, Options: &rsa.PSSOptions{