OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // https://w3c.github.io/webauthn/#dictdef-makecredentialoptions |
| 6 |
| 7 dictionary MakeCredentialOptions { |
| 8 required PublicKeyCredentialEntity rp; |
| 9 required PublicKeyCredentialUserEntity user; |
| 10 required BufferSource challenge; |
| 11 required sequence<PublicKeyCredentialParameters> parameters; |
| 12 unsigned long timeout; |
| 13 sequence<PublicKeyCredentialDescriptor> excludeCredentials = []; |
| 14 AuthenticatorSelectionCriteria authenticatorSelection; |
| 15 // TODO(crbug.com/733033): Add extension support |
| 16 }; |
OLD | NEW |