blob: 9d699b973f6e016af0b0da62078176f1a1b62bd5 [file] [log] [blame]
// Copyright 2017 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.
//
// Defines the objects stored by cert_provision in the keystore.
syntax = "proto2";
package cert_provision;
message ProvisionStatus {
// Is the certificate already provisioned?
optional bool provisioned = 1;
// If provisioned, the id of the corresponding keys in the keystore.
optional bytes key_id = 2;
// If provisioned, contains the certificate chain in PEM format.
optional bytes certificate_chain = 3;
}