Re: [webauthn] Recovering from Device Loss

@emlun 
Thanks for your cool slide.

I'm not sure what  is the “public key seed”  in your slide. It seems that main key need to store or generate "recovery credential id" which equivalent to WebAuthn Credential ID.

```js
extensions: {
  “recovery”: {
    “action”: “generate”
  }
}

extensionOutputs: { 
  “recovery”: {
    “action”: “generate”,
    “state”: 3,
    “creds”: [{
      “id”: “ABCD…”, //equivalent to WebAuthn credentialId
      “publicKey”: “AAAA…”
    }]
  }
}

```

How to be generated creds.id and creds.publicKey from "public key seed" in main authenticator? or just 
be stored creds.id and creds.publicKey from recovery auhenticator?

-- 
GitHub Notification of comment by watahani
Please view or discuss this issue at https://github.com/w3c/webauthn/issues/931#issuecomment-433468491 using your GitHub account

Received on Friday, 26 October 2018 16:35:32 UTC