-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The biggest change between v3 and v4 is ParseSigned now requires a set of allow listed algorithms. go-oidc was already doing this ad-hoc, so the change is an improvement over the current logic.
- Loading branch information
1 parent
0963f39
commit dfd8799
Showing
6 changed files
with
58 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
module github.com/coreos/go-oidc/v3 | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.22.0 | ||
|
||
require ( | ||
github.com/go-jose/go-jose/v3 v3.0.1 | ||
github.com/go-jose/go-jose/v4 v4.0.1 | ||
golang.org/x/net v0.17.0 | ||
golang.org/x/oauth2 v0.13.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters