Skip to content
Closed
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: 2 additions & 2 deletions cmd/passless/src/authenticator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,13 @@ impl<S: CredentialStorage + 'static> AuthenticatorService<S> {
up: true, // User presence
uv: Some(true), // User verification
plat: true, // Platform authenticator
client_pin: None, // Client PIN support
client_pin: Some(false), // PIN supported but not set
pin_uv_auth_token: Some(true), // PIN UV auth token
cred_mgmt: Some(true), // Credential management enabled
bio_enroll: None,
large_blobs: None,
ep: None,
always_uv: Some(true),
always_uv: Some(false), // Allow operations without UV (notification-based UP)
make_cred_uv_not_required: Some(true),
};

Expand Down
Loading