-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`webauthn-server-core`: New features: - Added method `getParsedPublicKey(): java.security.PublicKey` to `RegistrationResult` and `RegisteredCredential`. - Thanks to Jakob Heher (A-SIT) for the contribution, see #299 - Added enum parsing functions: - `AuthenticatorAttachment.fromValue(String): Optional<AuthenticatorAttachment>` - `PublicKeyCredentialType.fromId(String): Optional<PublicKeyCredentialType>` - `ResidentKeyRequirement.fromValue(String): Optional<ResidentKeyRequirement>` - `TokenBindingStatus.fromValue(String): Optional<TokenBindingStatus>` - `UserVerificationRequirement.fromValue(String): Optional<UserVerificationRequirement>` - Added public builder to `CredentialPropertiesOutput`. - Added public factory function `LargeBlobRegistrationOutput.supported(boolean)`. - Added public factory functions to `LargeBlobAuthenticationOutput`. - Added `hints` property to `StartRegistrationOptions`, `StartAssertionOptions`, `PublicKeyCredentialCreationOptions` and `PublicKeyCredentialRequestOptions`, and class `PublicKeyCredentialHint` to support them, to support the `hints` parameter introduced in WebAuthn L3: https://www.w3.org/TR/2023/WD-webauthn-3-20230927/#dom-publickeycredentialcreationoptions-hints - (Experimental) Added option `isSecurePaymentConfirmation(boolean)` to `FinishAssertionOptions`. When set, `RelyingParty.finishAssertion()` will adapt the validation logic for a Secure Payment Confirmation (SPC) response instead of an ordinary WebAuthn response. See the JavaDoc for details. - NOTE: Experimental features may receive breaking changes without a major version increase. `webauthn-server-attestation`: New features: - `FidoMetadataDownloader` now parses the CRLDistributionPoints extension on the application level, so the `com.sun.security.enableCRLDP=true` system property setting is no longer necessary. - Added helper function `CertificateUtil.parseFidoSernumExtension` for parsing serial number from enterprise attestation certificates.
- Loading branch information
Showing
60 changed files
with
3,348 additions
and
1,098 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,9 @@ out/ | |
*.iws | ||
.attach_pid* | ||
|
||
# VS Code | ||
.vscode/ | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
|
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.
47ceee8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mutation test results
com.yubico.fido.metadata
com.yubico.internal.util
com.yubico.webauthn
com.yubico.webauthn.attestation
com.yubico.webauthn.data
com.yubico.webauthn.extension.appid
com.yubico.webauthn.extension.uvm
com.yubico.webauthn.meta
Previous run: 0cbba57 - Diff
Detailed reports: workflow run #293