blob: 9e81710d4325ac626f20503650e4bebaa9b0344f [file] [log] [blame]
// Copyright 2018 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 attestation;
option go_package = "attestation_proto";
// Describes key type.
enum KeyType {
KEY_TYPE_RSA = 1;
KEY_TYPE_ECC = 2;
}
// Describes allowed key usage.
enum KeyUsage {
KEY_USAGE_SIGN = 1;
KEY_USAGE_DECRYPT = 2;
}