Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dex
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
dex
Commits
4ddc5eb0
Commit
4ddc5eb0
authored
Jan 07, 2017
by
rithu leena john
Committed by
GitHub
Jan 07, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #765 from rithujohn191/bump-oidc
Bump go-oidc package
parents
fb5199c9
05cef99a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
glide.lock
glide.lock
+3
-3
glide.yaml
glide.yaml
+1
-1
verify.go
vendor/github.com/coreos/go-oidc/verify.go
+7
-0
No files found.
glide.lock
View file @
4ddc5eb0
hash:
723f2faad8f09a97ffb5ce647705b8ee41dbf2f81f91488c60f23d102789a23b
updated: 201
6-12-08T11:11:10.172119799
-08:00
hash:
22c01c4265c210fbf3cd2d55e9451b924a3301e35053c82ebe35171ab7286c83
updated: 201
7-01-06T15:38:29.812891187
-08:00
imports:
- name: github.com/cockroachdb/cockroach-go
version: 31611c0501c812f437d4861d87d117053967c955
subpackages:
- crdb
- name: github.com/coreos/go-oidc
version:
dedb650fb29c39c2f21aa88c1e4cec66da8754d
1
version:
2b5d73091ea4b7ddb15e3ac00077f153120b5b6
1
- name: github.com/ghodss/yaml
version: bea76d6a4713e18b7f5321a2b020738552def3ea
- name: github.com/go-sql-driver/mysql
...
...
glide.yaml
View file @
4ddc5eb0
...
...
@@ -66,7 +66,7 @@ import:
# Used for server integration tests and OpenID Connect connector.
-
package
:
github.com/coreos/go-oidc
version
:
dedb650fb29c39c2f21aa88c1e4cec66da8754d
1
version
:
2b5d73091ea4b7ddb15e3ac00077f153120b5b6
1
-
package
:
github.com/pquerna/cachecontrol
version
:
c97913dcbd76de40b051a9b4cd827f7eaeb7a868
-
package
:
golang.org/x/oauth2
...
...
vendor/github.com/coreos/go-oidc/verify.go
View file @
4ddc5eb0
...
...
@@ -145,6 +145,13 @@ func (v *IDTokenVerifier) Verify(ctx context.Context, rawIDToken string) (*IDTok
}
}
// If a checkExpiry is specified, make sure token is not expired.
if
v
.
config
.
checkExpiry
!=
nil
{
if
t
.
Expiry
.
Before
(
v
.
config
.
checkExpiry
())
{
return
nil
,
fmt
.
Errorf
(
"oidc: token is expired (Token Expiry: %v)"
,
t
.
Expiry
)
}
}
// If a set of required algorithms has been provided, ensure that the signatures use those.
var
keyIDs
,
gotAlgs
[]
string
for
_
,
sig
:=
range
jws
.
Signatures
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment