Skip to content
This repository was archived by the owner on Aug 10, 2021. It is now read-only.

Commit 9162a5a

Browse files
authored
Merge pull request #4 from Waterdrips/waterdrips-rename-module
Rename module to form3tech-oss
2 parents bb5e6d8 + fb337ee commit 9162a5a

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

cmd/jwt/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"regexp"
1717
"strings"
1818

19-
jwt "github.com/dgrijalva/jwt-go"
19+
jwt "github.com/form3tech-oss/jwt-go"
2020
)
2121

2222
var (

ecdsa_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/dgrijalva/jwt-go"
9+
"github.com/form3tech-oss/jwt-go"
1010
)
1111

1212
var ecdsaTestData = []struct {

hmac_example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package jwt_test
22

33
import (
44
"fmt"
5-
"github.com/dgrijalva/jwt-go"
5+
"github.com/form3tech-oss/jwt-go"
66
"io/ioutil"
77
"time"
88
)

hmac_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package jwt_test
22

33
import (
4-
"github.com/dgrijalva/jwt-go"
4+
"github.com/form3tech-oss/jwt-go"
55
"io/ioutil"
66
"strings"
77
"testing"

http_example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"bytes"
88
"crypto/rsa"
99
"fmt"
10-
"github.com/dgrijalva/jwt-go"
11-
"github.com/dgrijalva/jwt-go/request"
10+
"github.com/form3tech-oss/jwt-go"
11+
"github.com/form3tech-oss/jwt-go/request"
1212
"io"
1313
"io/ioutil"
1414
"log"

none_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package jwt_test
22

33
import (
4-
"github.com/dgrijalva/jwt-go"
4+
"github.com/form3tech-oss/jwt-go"
55
"strings"
66
"testing"
77
)

parser_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/dgrijalva/jwt-go"
12-
"github.com/dgrijalva/jwt-go/test"
11+
"github.com/form3tech-oss/jwt-go"
12+
"github.com/form3tech-oss/jwt-go/test"
1313
)
1414

1515
var keyFuncError error = fmt.Errorf("error loading key")

request/request.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package request
22

33
import (
4-
"github.com/dgrijalva/jwt-go"
4+
"github.com/form3tech-oss/jwt-go"
55
"net/http"
66
)
77

request/request_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package request
22

33
import (
44
"fmt"
5-
"github.com/dgrijalva/jwt-go"
6-
"github.com/dgrijalva/jwt-go/test"
5+
"github.com/form3tech-oss/jwt-go"
6+
"github.com/form3tech-oss/jwt-go/test"
77
"net/http"
88
"net/url"
99
"reflect"

rsa_pss_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/dgrijalva/jwt-go"
13-
"github.com/dgrijalva/jwt-go/test"
12+
"github.com/form3tech-oss/jwt-go"
13+
"github.com/form3tech-oss/jwt-go/test"
1414
)
1515

1616
var rsaPSSTestData = []struct {
@@ -106,7 +106,7 @@ func TestRSAPSSSaltLengthCompatibility(t *testing.T) {
106106
},
107107
}
108108

109-
// Behaves as before https://github.com/dgrijalva/jwt-go/issues/285 fix.
109+
// Behaves as before https://github.com/form3tech-oss/jwt-go/issues/285 fix.
110110
ps256SaltLengthAuto := &jwt.SigningMethodRSAPSS{
111111
SigningMethodRSA: jwt.SigningMethodPS256.SigningMethodRSA,
112112
Options: &rsa.PSSOptions{

0 commit comments

Comments
 (0)