-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: - `RelyingParty` now makes an immutable copy of the `origins` argument, instead of storing a reference to a possibly mutable value. - The enum `AuthenticatorTransport` has been replaced by a value class containing methods and value constants equivalent to the previous enum. - The return type of `PublicKeyCredentialDescriptor.getTransports()` is now a `SortedSet` instead of `Set`. The builder still accepts a plain `Set`. - Registration ceremony now verifies that the returned credential public key matches one of the algorithms specified in `RelyingParty.preferredPubkeyParams` and can be successfully parsed. New features: - Origin matching can now be relaxed via two new `RelyingParty` options: - `allowOriginPort` (default `false`): Allow any port number in the origin - `allowOriginSubdomain` (default `false`): Allow any subdomain of any origin listed in `RelyingParty.origins` - See JavaDoc for details and examples. - The new `AuthenticatorTransport` can now contain any string value as the transport identifier, as required in the editor's draft of the L2 spec. See: w3c/webauthn#1275 - Added support for RS1 credentials. Registration of RS1 credentials is not enabled by default, but can be enabled by setting `RelyingParty.preferredPubKeyCredParams` to a list containing `PublicKeyCredentialParameters.RS1`. - New constant `PublicKeyCredentialParameters.RS1` - New constant `COSEAlgorithmIdentifier.RS1`
- Loading branch information
Showing
61 changed files
with
2,613 additions
and
647 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ branches: | |
jdk: | ||
- oraclejdk11 | ||
- openjdk8 | ||
- openjdk10 | ||
- openjdk11 | ||
|
||
script: | ||
|
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.