Closed Bug 1535730 Opened 6 years ago Closed 6 years ago

Resident key support

Categories

(Core :: DOM: Web Authentication, defect)

67 Branch
x86_64
Linux
defect
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 1530370

People

(Reporter: bugzilla.mozilla.org, Unassigned)

References

Details

User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0

Steps to reproduce:

webauthn resident keys do not look to be supported
As per spec:
https://www.w3.org/TR/webauthn/#client-side-resident-public-key-credential-source

$options = {
  "publicKey": {
    "rp": {
      "id": "localhost", 
      "name": "Demo server"
    }, 
    "excludeCredentials": [], 
    "authenticatorSelection": {
      "requireResidentKey": true, 
      "userVerification": "preferred"
    }, 
    "challenge": ..., 
    "pubKeyCredParams": [
      {
        "alg": -7, 
        "type": "public-key"
      }
    ], 
    "attestation": "none", 
    "user": {
      "displayName": "foo", 
      "id": ..., 
      "name": "foo"
    }, 
    "timeout": 30000
  }
}
navigator.credentials.create($options);

Actual results:

The security key does not react (should be blinking).

Expected results:

The security key should be contacted and blink

OS: Unspecified → Linux
Hardware: Unspecified → x86_64

Chrome had this implemented, and removed it due to privacy concerns: https://bugs.chromium.org/p/chromium/issues/detail?id=896404

(In reply to Arthur Gautier from comment #0)

Expected results:

The security key should be contacted and blink

Actually according to the spec, either the security should react, either the Promise should throw ConstraintError.

https://w3c.github.io/webauthn/#op-make-cred

If requireResidentKey is true and the authenticator cannot store a client-side-resident public key credential source, return an error code equivalent to "ConstraintError" and terminate the operation.

Status: UNCONFIRMED → RESOLVED
Closed: 6 years ago
Resolution: --- → DUPLICATE
Component: Untriaged → DOM: Web Authentication
Product: Firefox → Core
You need to log in before you can comment on or make changes to this bug.