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: components/policy/proto/policy_signing_key.proto

Issue 116273002: Added support for signed policy blobs on desktop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for ios. Created 6 years, 11 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: components/policy/proto/policy_signing_key.proto
diff --git a/components/policy/proto/policy_signing_key.proto b/components/policy/proto/policy_signing_key.proto
new file mode 100644
index 0000000000000000000000000000000000000000..bb1ed1debfcdf0883acff158c7efc02169b756bb
--- /dev/null
+++ b/components/policy/proto/policy_signing_key.proto
@@ -0,0 +1,20 @@
+// Copyright (c) 2013 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.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package enterprise_management;
+
+// Contains a signing key and its signature.
+message PolicySigningKey {
+ // The key used to verify policy blobs sent down from the server.
+ optional bytes signing_key = 1;
+
+ // The signature for this signing key (verified using a hard-coded key
+ // stored in the Chrome binary). This is essentially a certificate (key
+ // signed with another well-known key that establishes a trust root).
+ optional bytes signing_key_signature = 2;
+}

Powered by Google App Engine
This is Rietveld 408576698