Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat: add self signed jwt support (#572)
* feat: add self signed jwt support * update * chore: add more tests * update * update defaultscopes * update default scopes * update * update ComputeEngineCredentials * improve test coverage * update Co-authored-by: Brent Shaffer <betterbrent@google.com>
- Loading branch information
Showing
with
537 additions
and 45 deletions.
- +25 −5 oauth2_http/java/com/google/auth/oauth2/AppEngineCredentials.java
- +19 −4 oauth2_http/java/com/google/auth/oauth2/ComputeEngineCredentials.java
- +2 −1 oauth2_http/java/com/google/auth/oauth2/DefaultCredentialsProvider.java
- +14 −0 oauth2_http/java/com/google/auth/oauth2/GoogleCredentials.java
- +227 −20 oauth2_http/java/com/google/auth/oauth2/ServiceAccountCredentials.java
- +20 −1 oauth2_http/java/com/google/auth/oauth2/ServiceAccountJwtAccessCredentials.java
- +28 −2 oauth2_http/javatests/com/google/auth/oauth2/AppEngineCredentialsTest.java
- +25 −0 oauth2_http/javatests/com/google/auth/oauth2/ComputeEngineCredentialsTest.java
- +6 −0 oauth2_http/javatests/com/google/auth/oauth2/GoogleCredentialsTest.java
- +158 −9 oauth2_http/javatests/com/google/auth/oauth2/ServiceAccountCredentialsTest.java
- +13 −3 oauth2_http/javatests/com/google/auth/oauth2/ServiceAccountJwtAccessCredentialsTest.java
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
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
Oops, something went wrong.