chromium/device/fido/attestation_statement.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "device/fido/attestation_statement.h"

#include <string>
#include <utility>

#include "device/fido/fido_constants.h"

namespace device {

AttestationStatement::~AttestationStatement() = default;

AttestationStatement::AttestationStatement(std::string format)
    :{}

NoneAttestationStatement::NoneAttestationStatement()
    :{}

NoneAttestationStatement::~NoneAttestationStatement() = default;

bool NoneAttestationStatement::
    IsAttestationCertificateInappropriatelyIdentifying() const {}

bool NoneAttestationStatement::IsNoneAttestation() const {}

bool NoneAttestationStatement::IsSelfAttestation() const {}

std::optional<base::span<const uint8_t>>
NoneAttestationStatement::GetLeafCertificate() const {}

cbor::Value NoneAttestationStatement::AsCBOR() const {}

cbor::Value AsCBOR(const AttestationStatement& as) {}

}  // namespace device