Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/java/us/q3q/fido2/FIDO2Applet.java
Original file line number Diff line number Diff line change
Expand Up @@ -5518,6 +5518,10 @@ private void authenticatorReset(APDU apdu) {
counter.clear();

transientStorage.fullyReset();
// A CTAP2 reset does not deselect the applet; fullyReset() clears the whole
// transient bitfield including the applet-selected bit, so restore it here to
// avoid rejecting all later commands with INS_NOT_SUPPORTED until the next SELECT.
transientStorage.setAppletSelected();

forceInitKeyAgreementKey();

Expand Down