chromium/net/cert/ev_root_ca_metadata_unittest.cc

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

#include "net/cert/ev_root_ca_metadata.h"

#include "build/build_config.h"
#include "net/base/hash_value.h"
#include "net/test/cert_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/boringssl/src/pki/input.h"

namespace net {

namespace {

#if defined(PLATFORM_USES_CHROMIUM_EV_METADATA)
const char kFakePolicyStr[] =;

// DER OID values (no tag or length).
const uint8_t kFakePolicy[] =;
const uint8_t kCabEvPolicy[] =;

const SHA256HashValue kFakeFingerprint =;
const SHA256HashValue kStarfieldFingerprint =;

TEST(EVRootCAMetadataTest, Basic) {}

TEST(EVRootCAMetadataTest, AddRemove) {}

#endif  // defined(PLATFORM_USES_CHROMIUM_EV_METADATA)

}  // namespace

}  // namespace net