OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // https://w3c.github.io/webauthn/#sec-client-data | 5 // https://w3c.github.io/webauthn/#dictdef-collectedclientdata |
6 | 6 |
7 dictionary AuthenticationClientData { | 7 dictionary CollectedClientData { |
8 required DOMString challenge; | 8 required DOMString challenge; |
9 required DOMString origin; | 9 required DOMString origin; |
10 required AlgorithmIdentifier hashAlg; | 10 required DOMString hashAlgorithm; |
11 DOMString tokenBinding; | 11 DOMString tokenBindingId; |
12 AuthenticationExtensions extensions; | 12 // TODO(crbug.com/733033): Add extension support |
13 }; | 13 }; |
OLD | NEW |