chromium/device/fido/attestation_statement_formats_unittest.cc

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

#include <vector>

#include "components/cbor/reader.h"
#include "components/cbor/writer.h"
#include "device/fido/attestation_statement_formats.h"
#include "device/fido/fido_constants.h"
#include "device/fido/fido_parsing_utils.h"
#include "device/fido/fido_test_data.h"
#include "device/fido/opaque_attestation_statement.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace device {
namespace {

// The signature part from test_data::kPackedAttestationStatementCBOR.
constexpr uint8_t kSignature[] =;

// The certificates part from test_data::kPackedAttestationStatementCBOR.
constexpr uint8_t kCertificates[] =;

TEST(PackedAttestationStatementTest, CBOR) {}

TEST(PackedAttestationStatementTest, CBOR_NoCerts) {}

TEST(OpaqueAttestationStatementTest, GetLeafCertificate) {}

}  // namespace
}  // namespace device