blob: f3914c5e6c63131b655eea3f04c97afae0d1f68c [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
package cryptohome;
option optimize_for = LITE_RUNTIME;
message BootLockboxKey {
// The TPM-wrapped blob for the key.
optional bytes key_blob = 1;
// The DER-encoded public key corresponding to key_blob.
optional bytes public_key_der = 2;
// The creation data issued by the Tpm when creating the key.
optional bytes creation_blob = 3;
}