File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
"github.com/golang-jwt/jwt/v4"
9
9
)
10
10
11
- // User represents user from well know user info endpoint
11
+ // User represents user from well known user info endpoint
12
12
type User struct {
13
13
Email string `json:"email"`
14
14
EmailVerified bool `json:"email_verified,omitempty"`
@@ -25,7 +25,6 @@ type User struct {
25
25
type Token struct {
26
26
Err string `json:"error,omitempty"`
27
27
ErrDesc string `json:"error_description,omitempty"`
28
- AuthURI string `json:"authorization_endpoint,omitempty"`
29
28
IDToken string `json:"id_token"`
30
29
AccessToken string `json:"access_token,omitempty"`
31
30
RefreshToken string `json:"refresh_token,omitempty"`
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ func ParseExponent(es string) int {
57
57
return int (new (big.Int ).SetBytes (buf ).Uint64 ())
58
58
}
59
59
60
+ // GetCurve gets the elliptic.Curve from last 3 chars of string s
60
61
func GetCurve (s string ) elliptic.Curve {
61
62
s3 := s [len (s )- 3 :]
62
63
if s3 == "256" {
You can’t perform that action at this time.
0 commit comments