tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsIWebAuthnAttObj.idl (806B)


      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/. */
      5 
      6 #include "nsISupports.idl"
      7 #include "nsIWebAuthnArgs.idl"
      8 
      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;
     14 
     15    readonly attribute Array<octet> authenticatorData;
     16 
     17    readonly attribute Array<octet> publicKey;
     18 
     19    readonly attribute COSEAlgorithmIdentifier publicKeyAlgorithm;
     20 
     21    boolean isIdentifying();
     22 };