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

Unified Diff: chrome/renderer/origin_trials/origin_trial_key_manager.cc

Issue 1653263005: [Experimental Framework] Move the trial token public key out of content and into the embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move /common/ code to /renderer/ Created 4 years, 10 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
Index: chrome/renderer/origin_trials/origin_trial_key_manager.cc
diff --git a/chrome/renderer/origin_trials/origin_trial_key_manager.cc b/chrome/renderer/origin_trials/origin_trial_key_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..945c8abe5d6ff97fd1f440ca93a5e18cba766cd6
--- /dev/null
+++ b/chrome/renderer/origin_trials/origin_trial_key_manager.cc
@@ -0,0 +1,23 @@
+// Copyright (c) 2016 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 "chrome/renderer/origin_trials/origin_trial_key_manager.h"
+
+#include <stdint.h>
+
+// This is the default public key used for validating signatures.
+// TODO(iclelland): Provide a mechanism to allow for multiple signing keys.
+// https://crbug.com/543220
chasej 2016/02/10 05:24:23 Nit: This is the wrong bug number (543220 is for s
iclelland 2016/02/10 20:31:00 Done.
+// TODO(iclelland): Provide a mechanism to override, replace or disable this key
+// with field trials.
+static const uint8_t kPublicKey[] = {
+ 0x7c, 0xc4, 0xb8, 0x9a, 0x93, 0xba, 0x6e, 0xe2, 0xd0, 0xfd, 0x03,
+ 0x1d, 0xfb, 0x32, 0x66, 0xc7, 0x3b, 0x72, 0xfd, 0x54, 0x3a, 0x07,
+ 0x51, 0x14, 0x66, 0xaa, 0x02, 0x53, 0x4e, 0x33, 0xa1, 0x15,
+};
+
+base::StringPiece OriginTrialKeyManager::GetPublicKey() {
+ return base::StringPiece(reinterpret_cast<const char*>(kPublicKey),
+ arraysize(kPublicKey));
+}

Powered by Google App Engine
This is Rietveld 408576698