Chromium Code Reviews| 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..222c02f95b975e7e677e9cdb3aa12e32fd12a9f3 |
| --- /dev/null |
| +++ b/components/policy/proto/policy_signing_key.proto |
| @@ -0,0 +1,19 @@ |
| +// 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). |
| + 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
|
| +} |