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

Side by Side 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: Cleanup from self-review + cros clang fix. Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 syntax = "proto2";
6
7 option optimize_for = LITE_RUNTIME;
8
9 package enterprise_management;
10
11 // Contains a signing key and its signature.
12 message PolicySigningKey {
13 // The key used to verify policy blobs sent down from the server.
14 optional bytes signing_key = 1;
15
16 // The signature for this signing key (verified using a hard-coded key
17 // stored in the Chrome binary).
18 optional bytes signing_key_signature = 2;
Mattias Nissler (ping if slow) 2014/01/27 13:52:13 Suggestion: Rename this to signing_key_certificate
Andrew T Wilson (Slow) 2014/01/30 17:10:31 I'll add a comment. We already using _signature in
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698