OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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> excludeList; | |
engedy
2017/07/05 18:51:05
s/excludeList/excludeCredentials/, also do we need
kpaulhamus
2017/07/12 21:21:46
Done.
| |
14 AuthenticatorSelectionCriteria authenticatorSelection; | |
15 }; | |
engedy
2017/07/05 18:51:05
nit: Add TODO(crbug.com/...) for extension fields.
kpaulhamus
2017/07/12 21:21:47
Done.
| |
OLD | NEW |