chromium/remoting/base/rsa_key_pair_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 <string>

#include "remoting/base/rsa_key_pair.h"
#include "remoting/base/test_rsa_key_pair.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace remoting {

namespace {
const char kTestMessage[] =;

// |kTestMessage| signed with the key from |kTestRsaKeyPair|.
const char kExpectedSignature[] =;

// Another RSA key pair, different from |kTestRsaKeyPair|
const char kTestRsaKeyPair2[] =;

}  // namespace

class RsaKeyPairTest : public testing::Test {};

TEST_F(RsaKeyPairTest, ImportExportImport) {}

TEST_F(RsaKeyPairTest, Signatures) {}

TEST_F(RsaKeyPairTest, GenerateKey) {}

TEST_F(RsaKeyPairTest, SignaturesDiffer) {}

}  // namespace remoting