chromium/components/client_update_protocol/ecdsa_unittest.cc

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

#include "components/client_update_protocol/ecdsa.h"

#include <stdint.h>

#include <limits>
#include <memory>

#include "base/base64.h"
#include "base/base64url.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "crypto/random.h"
#include "crypto/secure_util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace client_update_protocol {

namespace {

std::string GetPublicKeyForTesting() {}

}  // end namespace

class CupEcdsaTest : public testing::Test {};

TEST_F(CupEcdsaTest, SignRequest) {}

TEST_F(CupEcdsaTest, ValidateResponse_TestETagParsing) {}

TEST_F(CupEcdsaTest, ValidateResponse_TestSigning) {}

}  // namespace client_update_protocol