|
|
|
@ -78,9 +78,9 @@ func (x *SecureValueDecryptRequest) GetNames() []string { |
|
|
|
|
type SecureValueDecryptResponseCollection struct { |
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"` |
|
|
|
|
// A map of secure value names and their decrypted values.
|
|
|
|
|
// The value may be empty if the requestor does not have permissions to read it, or if the value does not exist.
|
|
|
|
|
// The value will be an error message if the requestor does not have permissions to read it, or if the value does not exist.
|
|
|
|
|
// It will never return a 404 Not Found to avoid scanning of valid secure values.
|
|
|
|
|
DecryptedValues map[string]string `protobuf:"bytes,1,rep,name=decrypted_values,json=decryptedValues,proto3" json:"decrypted_values,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
|
|
|
|
DecryptedValues map[string]*Result `protobuf:"bytes,1,rep,name=decrypted_values,json=decryptedValues,proto3" json:"decrypted_values,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
|
|
|
|
unknownFields protoimpl.UnknownFields |
|
|
|
|
sizeCache protoimpl.SizeCache |
|
|
|
|
} |
|
|
|
@ -115,13 +115,95 @@ func (*SecureValueDecryptResponseCollection) Descriptor() ([]byte, []int) { |
|
|
|
|
return file_decrypt_proto_rawDescGZIP(), []int{1} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (x *SecureValueDecryptResponseCollection) GetDecryptedValues() map[string]string { |
|
|
|
|
func (x *SecureValueDecryptResponseCollection) GetDecryptedValues() map[string]*Result { |
|
|
|
|
if x != nil { |
|
|
|
|
return x.DecryptedValues |
|
|
|
|
} |
|
|
|
|
return nil |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type Result struct { |
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"` |
|
|
|
|
// Types that are valid to be assigned to Result:
|
|
|
|
|
//
|
|
|
|
|
// *Result_Value
|
|
|
|
|
// *Result_ErrorMessage
|
|
|
|
|
Result isResult_Result `protobuf_oneof:"result"` |
|
|
|
|
unknownFields protoimpl.UnknownFields |
|
|
|
|
sizeCache protoimpl.SizeCache |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (x *Result) Reset() { |
|
|
|
|
*x = Result{} |
|
|
|
|
mi := &file_decrypt_proto_msgTypes[2] |
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
|
|
|
|
ms.StoreMessageInfo(mi) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (x *Result) String() string { |
|
|
|
|
return protoimpl.X.MessageStringOf(x) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (*Result) ProtoMessage() {} |
|
|
|
|
|
|
|
|
|
func (x *Result) ProtoReflect() protoreflect.Message { |
|
|
|
|
mi := &file_decrypt_proto_msgTypes[2] |
|
|
|
|
if x != nil { |
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
|
|
|
|
if ms.LoadMessageInfo() == nil { |
|
|
|
|
ms.StoreMessageInfo(mi) |
|
|
|
|
} |
|
|
|
|
return ms |
|
|
|
|
} |
|
|
|
|
return mi.MessageOf(x) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Deprecated: Use Result.ProtoReflect.Descriptor instead.
|
|
|
|
|
func (*Result) Descriptor() ([]byte, []int) { |
|
|
|
|
return file_decrypt_proto_rawDescGZIP(), []int{2} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (x *Result) GetResult() isResult_Result { |
|
|
|
|
if x != nil { |
|
|
|
|
return x.Result |
|
|
|
|
} |
|
|
|
|
return nil |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (x *Result) GetValue() string { |
|
|
|
|
if x != nil { |
|
|
|
|
if x, ok := x.Result.(*Result_Value); ok { |
|
|
|
|
return x.Value |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return "" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (x *Result) GetErrorMessage() string { |
|
|
|
|
if x != nil { |
|
|
|
|
if x, ok := x.Result.(*Result_ErrorMessage); ok { |
|
|
|
|
return x.ErrorMessage |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return "" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type isResult_Result interface { |
|
|
|
|
isResult_Result() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type Result_Value struct { |
|
|
|
|
Value string `protobuf:"bytes,1,opt,name=value,proto3,oneof"` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type Result_ErrorMessage struct { |
|
|
|
|
ErrorMessage string `protobuf:"bytes,2,opt,name=error_message,json=errorMessage,proto3,oneof"` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (*Result_Value) isResult_Result() {} |
|
|
|
|
|
|
|
|
|
func (*Result_ErrorMessage) isResult_Result() {} |
|
|
|
|
|
|
|
|
|
var File_decrypt_proto protoreflect.FileDescriptor |
|
|
|
|
|
|
|
|
|
var file_decrypt_proto_rawDesc = string([]byte{ |
|
|
|
@ -131,7 +213,7 @@ var file_decrypt_proto_rawDesc = string([]byte{ |
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, |
|
|
|
|
0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, |
|
|
|
|
0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, |
|
|
|
|
0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0xd9, 0x01, 0x0a, 0x24, 0x53, 0x65, |
|
|
|
|
0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0xea, 0x01, 0x0a, 0x24, 0x53, 0x65, |
|
|
|
|
0x63, 0x75, 0x72, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, |
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, |
|
|
|
|
0x6f, 0x6e, 0x12, 0x6d, 0x0a, 0x10, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, |
|
|
|
@ -141,23 +223,30 @@ var file_decrypt_proto_rawDesc = string([]byte{ |
|
|
|
|
0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x63, 0x72, |
|
|
|
|
0x79, 0x70, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, |
|
|
|
|
0x52, 0x0f, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, |
|
|
|
|
0x73, 0x1a, 0x42, 0x0a, 0x14, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x56, 0x61, |
|
|
|
|
0x73, 0x1a, 0x53, 0x0a, 0x14, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x56, 0x61, |
|
|
|
|
0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, |
|
|
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, |
|
|
|
|
0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, |
|
|
|
|
0x65, 0x3a, 0x02, 0x38, 0x01, 0x32, 0x80, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, |
|
|
|
|
0x56, 0x61, 0x6c, 0x75, 0x65, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x72, 0x12, 0x68, |
|
|
|
|
0x0a, 0x13, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x56, |
|
|
|
|
0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x22, 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x2e, |
|
|
|
|
0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x44, 0x65, 0x63, 0x72, 0x79, |
|
|
|
|
0x70, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x64, 0x65, 0x63, 0x72, |
|
|
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x25, 0x0a, 0x05, 0x76, |
|
|
|
|
0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x64, 0x65, 0x63, |
|
|
|
|
0x72, 0x79, 0x70, 0x74, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, |
|
|
|
|
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x51, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, |
|
|
|
|
0x12, 0x16, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, |
|
|
|
|
0x00, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x25, 0x0a, 0x0d, 0x65, 0x72, 0x72, 0x6f, |
|
|
|
|
0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, |
|
|
|
|
0x00, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x42, |
|
|
|
|
0x08, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0x80, 0x01, 0x0a, 0x14, 0x53, 0x65, |
|
|
|
|
0x63, 0x75, 0x72, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, |
|
|
|
|
0x65, 0x72, 0x12, 0x68, 0x0a, 0x13, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x53, 0x65, 0x63, |
|
|
|
|
0x75, 0x72, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x22, 0x2e, 0x64, 0x65, 0x63, 0x72, |
|
|
|
|
0x79, 0x70, 0x74, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x44, |
|
|
|
|
0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, |
|
|
|
|
0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x3d, 0x5a, 0x3b, 0x67, 0x69, 0x74, 0x68, |
|
|
|
|
0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x61, 0x66, 0x61, 0x6e, 0x61, 0x2f, 0x67, |
|
|
|
|
0x72, 0x61, 0x66, 0x61, 0x6e, 0x61, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2f, |
|
|
|
|
0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x2f, 0x76, 0x30, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2f, |
|
|
|
|
0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, |
|
|
|
|
0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, |
|
|
|
|
0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x56, 0x61, |
|
|
|
|
0x6c, 0x75, 0x65, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, |
|
|
|
|
0x73, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x3d, 0x5a, 0x3b, |
|
|
|
|
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x61, 0x66, 0x61, |
|
|
|
|
0x6e, 0x61, 0x2f, 0x67, 0x72, 0x61, 0x66, 0x61, 0x6e, 0x61, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x61, |
|
|
|
|
0x70, 0x69, 0x73, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x2f, 0x76, 0x30, 0x61, 0x6c, 0x70, |
|
|
|
|
0x68, 0x61, 0x31, 0x2f, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, |
|
|
|
|
0x74, 0x6f, 0x33, |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
var ( |
|
|
|
@ -172,21 +261,23 @@ func file_decrypt_proto_rawDescGZIP() []byte { |
|
|
|
|
return file_decrypt_proto_rawDescData |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var file_decrypt_proto_msgTypes = make([]protoimpl.MessageInfo, 3) |
|
|
|
|
var file_decrypt_proto_msgTypes = make([]protoimpl.MessageInfo, 4) |
|
|
|
|
var file_decrypt_proto_goTypes = []any{ |
|
|
|
|
(*SecureValueDecryptRequest)(nil), // 0: decrypt.SecureValueDecryptRequest
|
|
|
|
|
(*SecureValueDecryptResponseCollection)(nil), // 1: decrypt.SecureValueDecryptResponseCollection
|
|
|
|
|
nil, // 2: decrypt.SecureValueDecryptResponseCollection.DecryptedValuesEntry
|
|
|
|
|
(*Result)(nil), // 2: decrypt.Result
|
|
|
|
|
nil, // 3: decrypt.SecureValueDecryptResponseCollection.DecryptedValuesEntry
|
|
|
|
|
} |
|
|
|
|
var file_decrypt_proto_depIdxs = []int32{ |
|
|
|
|
2, // 0: decrypt.SecureValueDecryptResponseCollection.decrypted_values:type_name -> decrypt.SecureValueDecryptResponseCollection.DecryptedValuesEntry
|
|
|
|
|
0, // 1: decrypt.SecureValueDecrypter.DecryptSecureValues:input_type -> decrypt.SecureValueDecryptRequest
|
|
|
|
|
1, // 2: decrypt.SecureValueDecrypter.DecryptSecureValues:output_type -> decrypt.SecureValueDecryptResponseCollection
|
|
|
|
|
2, // [2:3] is the sub-list for method output_type
|
|
|
|
|
1, // [1:2] is the sub-list for method input_type
|
|
|
|
|
1, // [1:1] is the sub-list for extension type_name
|
|
|
|
|
1, // [1:1] is the sub-list for extension extendee
|
|
|
|
|
0, // [0:1] is the sub-list for field type_name
|
|
|
|
|
3, // 0: decrypt.SecureValueDecryptResponseCollection.decrypted_values:type_name -> decrypt.SecureValueDecryptResponseCollection.DecryptedValuesEntry
|
|
|
|
|
2, // 1: decrypt.SecureValueDecryptResponseCollection.DecryptedValuesEntry.value:type_name -> decrypt.Result
|
|
|
|
|
0, // 2: decrypt.SecureValueDecrypter.DecryptSecureValues:input_type -> decrypt.SecureValueDecryptRequest
|
|
|
|
|
1, // 3: decrypt.SecureValueDecrypter.DecryptSecureValues:output_type -> decrypt.SecureValueDecryptResponseCollection
|
|
|
|
|
3, // [3:4] is the sub-list for method output_type
|
|
|
|
|
2, // [2:3] is the sub-list for method input_type
|
|
|
|
|
2, // [2:2] is the sub-list for extension type_name
|
|
|
|
|
2, // [2:2] is the sub-list for extension extendee
|
|
|
|
|
0, // [0:2] is the sub-list for field type_name
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func init() { file_decrypt_proto_init() } |
|
|
|
@ -194,13 +285,17 @@ func file_decrypt_proto_init() { |
|
|
|
|
if File_decrypt_proto != nil { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
file_decrypt_proto_msgTypes[2].OneofWrappers = []any{ |
|
|
|
|
(*Result_Value)(nil), |
|
|
|
|
(*Result_ErrorMessage)(nil), |
|
|
|
|
} |
|
|
|
|
type x struct{} |
|
|
|
|
out := protoimpl.TypeBuilder{ |
|
|
|
|
File: protoimpl.DescBuilder{ |
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), |
|
|
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_decrypt_proto_rawDesc), len(file_decrypt_proto_rawDesc)), |
|
|
|
|
NumEnums: 0, |
|
|
|
|
NumMessages: 3, |
|
|
|
|
NumMessages: 4, |
|
|
|
|
NumExtensions: 0, |
|
|
|
|
NumServices: 1, |
|
|
|
|
}, |
|
|
|
|