github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ccl/storageccl/engineccl/enginepbccl/stats.proto (about) 1 // Copyright 2018 The Cockroach Authors. 2 // 3 // Licensed as a CockroachDB Enterprise file under the Cockroach Community 4 // License (the "License"); you may not use this file except in compliance with 5 // the License. You may obtain a copy of the License at 6 // 7 // https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt 8 9 syntax = "proto3"; 10 package cockroach.ccl.storageccl.engineccl.enginepbccl; 11 option go_package = "enginepbccl"; 12 13 import "gogoproto/gogo.proto"; 14 import "ccl/storageccl/engineccl/enginepbccl/key_registry.proto"; 15 16 // EncryptionStatus contains encryption-related information. 17 message EncryptionStatus { 18 // Information about the active store key, if any. 19 KeyInfo active_store_key = 1; 20 // Information about the active data key, if any. 21 KeyInfo active_data_key = 2; 22 }