Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / webauthn / nsIWebAuthnAttObj.idl
blob101d4d14333e393b9be38d112ee5e9a9b4cfcbac
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsISupports.idl"
7 #include "nsIWebAuthnArgs.idl"
9 [uuid(91e41be0-ed73-4a10-b55e-3312319bfddf)]
10 interface nsIWebAuthnAttObj : nsISupports {
11 // The serialied attestation object as defined in
12 // https://www.w3.org/TR/webauthn-2/#sctn-attestation
13 readonly attribute Array<octet> attestationObject;
15 readonly attribute Array<octet> authenticatorData;
17 readonly attribute Array<octet> publicKey;
19 readonly attribute COSEAlgorithmIdentifier publicKeyAlgorithm;
21 boolean isIdentifying();