-
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.
`webauthn-server-core`: Changes: - Changed internal structure of `RegistrationResult` and `AssertionResult`. This may affect you if you use Jackson or similar tools to serialize these values to JSON, for example. This is not an officially supported use case and thus does not warrant a major version bump. - Removed methods `RegistrationResult.toBuilder()` and `AssertionResult.toBuilder()`. Both had package-private return types, and thus were not usable by outside callers. New features: - (Experimental) Added support for the new `BE` (backup eligible) and `BS` (backup state) flags in authenticator data: - NOTE: Experimental features may receive breaking changes without a major version increase. - Added `BE` and `BS` properties to `AuthenticatorDataFlags`, reflecting the respective flags (bits 0x08 and 0x10). - Added methods `isBackupEligible()` and `isBackedUp()` to `RegistrationResult` and `AssertionResult`, reflecting respectively the `BE` and `BS` flags. - Added properties `backupEligible` and `backupState`, getters `isBackupEligible()` and `isBackedUp()`, and corresponding builder methods to `RegisteredCredential`. `RelyingParty.finishAssertion(...)` will now validate that if `RegisteredCredential.isBackupEligible()` is present, then the `BE` flag of any assertion of that credential must match the stored value. Fixes: - Fixed TPM attestation verification rejecting attestation certificates with TPM Device Attributes split between multiple RelativeDistinguishedName structures in the Subject Alternative Names extension. - Thanks to Oussama Zgheb for the contribution, see #241 - Fixed various errors in JavaDoc. `webauthn-server-attestation`: Fixes: - Improved documentation of guarantees provided by `FidoMetadataDownloader` and required of its parameters.
- Loading branch information
Showing
31 changed files
with
1,403 additions
and
587 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ name: Reproducible binary | |
|
||
on: | ||
release: | ||
types: [published, edited] | ||
types: [published] | ||
|
||
jobs: | ||
download: | ||
|
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.
ab1fac4
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: 19a51c5
Detailed reports: workflow run #186