-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Digest Authorization Support (#6954)
* Rough idea for Digest Proxy support * Rough implementation of RFC 2617 and 7616 * Finalize RGC 2617 and RFC 7616 implementation * Added tests and changes to code structure * Integrating authentication support into Reactor Netty and OkHttp * Using channel attributes to pass authorization information * Support passing proxy authentication header through context * Fixed incorrect formatting in Proxy-Authorization header, finalized proxy digest authentication support in Reactor Netty * Adding documentation * Reverted testing changes in AppConfiguration * Moved AuthorizationChallengeHandler into util * Additional tests for AuthorizationChallengeHandler * Fixed checkstyle issues * Fixing linting and test issues * Changes based on PR feedback * Fix linting issue * Removed tests that don't have configuration available * Removed accidental character * Unit tests for Netty HttpClient * Fixed invalid name casing * Additional Netty tests * Unit tests for OkHttp * Fixed invalid failing test and removed erroneous dependency * Renaming classes, updating licensing, and added more tests for authScheme * Fixed linting issues, synchronizing access to lastChallenge in AuthorizationChallengeHandler * Fixed linting issue * Added OkHttp tests for configuration based proxy * Revert to using AtomicReference * Updated licensing text to include Netty license * Add component governance manifest
- Loading branch information
1 parent
2d1e0a6
commit 330106f
Showing
24 changed files
with
3,483 additions
and
165 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"Registrations": [ | ||
{ | ||
"Component": { | ||
"Type": "Maven", | ||
"Maven": { | ||
"ArtifactId": "netty-handler-proxy", | ||
"GroupId": "io.netty", | ||
"Version": "4.1.42.Final" | ||
} | ||
} | ||
} | ||
], | ||
"Version": 1 | ||
} |
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.