Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1019)

Side by Side Diff: net/test/channel_id_test_util.cc

Issue 1076063002: Remove certificates from Channel ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mixplaced close paren Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/test/channel_id_test_util.h"
6
7 #include <string>
8
9 #include "crypto/ec_private_key.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11
12 namespace net {
13
14 void ExpectKeysEqual(crypto::ECPrivateKey* key1, crypto::ECPrivateKey* key2) {
15 ASSERT_TRUE(key1);
16 ASSERT_TRUE(key2);
17 std::string public_key1, public_key2;
18 EXPECT_TRUE(key1->ExportRawPublicKey(&public_key1));
19 EXPECT_TRUE(key2->ExportRawPublicKey(&public_key2));
20 EXPECT_EQ(public_key1, public_key2);
21 }
22
23 void ExpectKeysNotEqual(crypto::ECPrivateKey* key1,
24 crypto::ECPrivateKey* key2) {
25 ASSERT_TRUE(key1);
26 ASSERT_TRUE(key2);
27 std::string public_key1, public_key2;
28 EXPECT_TRUE(key1->ExportRawPublicKey(&public_key1));
29 EXPECT_TRUE(key2->ExportRawPublicKey(&public_key2));
30 EXPECT_NE(public_key1, public_key2);
31 }
32
33 } // namespace net
OLDNEW
« net/test/channel_id_test_util.h ('K') | « net/test/channel_id_test_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698