File: eab.proto

package info (click to toggle)
golang-github-smallstep-linkedca 0.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 580 kB
  • sloc: makefile: 61
file content (20 lines) | stat: -rw-r--r-- 788 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
syntax = "proto3";

package linkedca;

option go_package = "github.com/smallstep/linkedca";

import "google/protobuf/timestamp.proto";

import "linkedca/policy.proto";

message EABKey {
    string id = 1;                              // the KeyID
    bytes hmac_key = 2;                         // the key bytes
    string provisioner = 3;                     // the provisioner for which to create the key
    string reference = 4;                       // name/reference to the key; can be linked to external system
    string account = 5;                         // account the key is bound to
    google.protobuf.Timestamp created_at = 6;   // time the key was created_at
    google.protobuf.Timestamp bound_at = 7;     // time the key was bound to an account
    Policy policy = 8;
}