Chromium Code Reviews| 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/#aaguid | |
| 6 | |
| 7 typedef BufferSource AAGUID; | |
| 8 | |
| 9 // https://w3c.github.io/webauthn/#typedefdef-authenticatorselectionlistn | |
| 10 | |
| 11 typedef sequence<AAGUID> AuthenticatorSelectionList; | |
|
Mike West
2017/06/30 08:06:36
Are we planning on implementing this extension? Ca
kpaulhamus
2017/06/30 10:59:40
Sure! Happy to drop.
| |
| 12 | |
| 13 // https://w3c.github.io/webauthn/#enumdef-attachment | |
| 14 | |
| 15 enum Attachment { | |
|
Mike West
2017/06/30 08:06:36
Should this be `AuthenticatorAttachment` (https://
kpaulhamus
2017/06/30 10:59:39
Done.
| |
| 16 "platform", | |
| 17 "cross-platform" | |
| 18 }; | |
| 19 | |
| 20 // https://w3c.github.io/webauthn/#dictdef-authenticatorselectioncriteria | |
| 21 | |
| 22 dictionary AuthenticatorSelectionCriteria { | |
| 23 Attachment attachment; | |
|
Mike West
2017/06/30 08:06:36
Ditto.
kpaulhamus
2017/06/30 10:59:40
Done.
| |
| 24 boolean requireResidentKey = false; | |
| 25 }; | |
| OLD | NEW |