ironcore-documents 0.3.0-pre.0

A library for working with IronCore Labs documents and header formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";

package ironcorelabs.proto.cmk;

option java_package = "com.ironcorelabs.proto.cmk";
option java_outer_classname = "EncryptedDekProtos";

message EncryptedDek {
  bytes encryptedDekData = 1;
  int32 kmsConfigId = 2;
  int32 leasedKeyId = 3;
  bytes leasedKeyIv = 4;
  bytes encryptedLeasedKeyData = 5;
  string tenantId = 6;
}

message EncryptedDeks { repeated EncryptedDek encryptedDeks = 1; }