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

Unified 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: Udpate KeysEqual to fail if preconditions fail 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/test/channel_id_test_util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/channel_id_test_util.cc
diff --git a/net/test/channel_id_test_util.cc b/net/test/channel_id_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..77007f2a879dee13009f7ba9b15911d1f5788494
--- /dev/null
+++ b/net/test/channel_id_test_util.cc
@@ -0,0 +1,25 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/test/channel_id_test_util.h"
+
+#include <string>
+
+#include "crypto/ec_private_key.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace net {
+
+::testing::AssertionResult KeysEqual(crypto::ECPrivateKey* key1,
+ crypto::ECPrivateKey* key2) {
+ std::string public_key1, public_key2;
+ EXPECT_TRUE(key1 && key1->ExportRawPublicKey(&public_key1));
+ EXPECT_TRUE(key2 && key2->ExportRawPublicKey(&public_key2));
+ if (public_key1 == public_key2)
+ return ::testing::AssertionSuccess();
+ else
+ return ::testing::AssertionFailure();
+}
+
+} // namespace net
« no previous file with comments | « 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