From 12b57c136f389e5478dddf22ca0245c2505453e1 Mon Sep 17 00:00:00 2001 From: Pavel Misko Date: Wed, 11 Dec 2024 12:18:38 +0100 Subject: [PATCH] [merge to stable 24-3] nbs-issue-176: added EncryptedDataKey field to NKikimrBlockStore::TEncryptionDesc (#8482) (#12457) --- ydb/core/protos/blockstore_config.proto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ydb/core/protos/blockstore_config.proto b/ydb/core/protos/blockstore_config.proto index d29f4ba161c9..f66aff78d7f6 100644 --- a/ydb/core/protos/blockstore_config.proto +++ b/ydb/core/protos/blockstore_config.proto @@ -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 {