Skip to content

Commit

Permalink
nbs-issue-176: added EncryptedDataKey field to NKikimrBlockStore::TEn…
Browse files Browse the repository at this point in the history
…cryptionDesc (#8482)
  • Loading branch information
sharpeye authored Dec 4, 2024
1 parent 4f81e50 commit e6985bf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ydb/core/protos/blockstore_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@ enum EPartitionType {
NonReplicated = 1; // directly mapped network partitions
}

message TEncryptedDataKey
{
optional string KekId = 1;
optional bytes Ciphertext = 2;
};

message TEncryptionDesc {
optional uint32 Mode = 1;
optional bytes KeyHash = 2;
optional TEncryptedDataKey EncryptedDataKey = 3;
}

message TVolumeConfig {
Expand Down

0 comments on commit e6985bf

Please sign in to comment.