Skip to content

Commit

Permalink
[merge to stable 24-3] nbs-issue-176: added EncryptedDataKey field to…
Browse files Browse the repository at this point in the history
… NKikimrBlockStore::TEncryptionDesc (#8482) (#12457)
  • Loading branch information
sharpeye authored Dec 11, 2024
1 parent ad9481c commit 12b57c1
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 12b57c1

Please sign in to comment.