diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptCryptoViewModelBase.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptCryptoViewModelBase.cs index cca83b62..3dee15b7 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptCryptoViewModelBase.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptCryptoViewModelBase.cs @@ -80,6 +80,7 @@ protected DecryptCryptoViewModelBase(IDesignServices services) : base(services) protected void ConfigureAlgorithmAndKeyProperties(ref int orderIndex) { Algorithm.IsPrincipal = true; + Algorithm.IsRequired = true; Algorithm.OrderIndex = orderIndex++; Algorithm.Category = Resources.Input; Algorithm.DataSource = DataSourceHelper.ForEnum( @@ -105,9 +106,8 @@ protected void ConfigureAlgorithmAndKeyProperties(ref int orderIndex) orderIndex++; KeyEncodingString.IsPrincipal = false; - KeyEncodingString.IsVisible = true; KeyEncodingString.OrderIndex = orderIndex++; - KeyEncodingString.Category = Resources.Input; + KeyEncodingString.Category = Resources.Category_Options_Name; KeyEncodingString.DataSource = _encodingDataSource; KeyEncodingString.Widget = new DefaultWidget { Type = ViewModelWidgetType.Dropdown, Metadata = new Dictionary() }; @@ -124,7 +124,6 @@ protected void ConfigureEncodingDropdown(DesignInArgument encodingProper { var dataSource = EncodingHelpers.ConfigureEncodingDataSource(); encodingProperty.IsPrincipal = false; - encodingProperty.IsVisible = true; encodingProperty.OrderIndex = orderIndex++; encodingProperty.Category = Resources.Input; encodingProperty.DataSource = dataSource; @@ -141,7 +140,6 @@ protected void ConfigureEncodingDropdown(DesignInArgument encodingProper protected void ConfigureInteropProperties(ref int orderIndex) { Format.IsPrincipal = false; - Format.IsVisible = true; Format.OrderIndex = orderIndex++; Format.Category = Resources.Input; Format.DataSource = DataSourceHelper.ForEnum( @@ -211,7 +209,7 @@ protected void ConfigureTailProperties(ref int orderIndex) VerifySignature.IsPrincipal = false; VerifySignature.IsVisible = false; VerifySignature.OrderIndex = orderIndex++; - VerifySignature.Category = Resources.Input; + VerifySignature.Category = Resources.Category_Options_Name; VerifySignature.Widget = new DefaultWidget { Type = ViewModelWidgetType.Toggle }; PublicKeyFilePath.IsPrincipal = false; diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptFileViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptFileViewModel.cs index 9444d59f..609eb88c 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptFileViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptFileViewModel.cs @@ -49,12 +49,11 @@ protected override void InitializeModel() ConfigureInteropProperties(ref orderIndex); OutputFilePath.IsPrincipal = false; - OutputFilePath.IsVisible = true; OutputFilePath.IsRequired = false; OutputFilePath.OrderIndex = orderIndex++; - OutputFilePath.Category = Resources.Input; + OutputFilePath.Category = Resources.Category_Options_Name; - Overwrite.IsPrincipal = false; + Overwrite.IsPrincipal = true; Overwrite.OrderIndex = orderIndex++; Overwrite.Category = Resources.Category_Options_Name; Overwrite.Widget = new DefaultWidget { Type = ViewModelWidgetType.Toggle }; @@ -68,6 +67,8 @@ protected override void InitializeModel() DecryptedFile.IsPrincipal = false; DecryptedFile.OrderIndex = orderIndex; DecryptedFile.Category = Resources.Output; + + ConfigurePropertyTexts(); } private void ConfigureInputFileMenuActions() @@ -76,6 +77,50 @@ private void ConfigureInputFileMenuActions() ApplyInputFileVisibility(); } + private void ConfigurePropertyTexts() + { + InputFile.DisplayName = Resources.Activity_DecryptFile_Property_InputFile_Name; + InputFile.Tooltip = Resources.Activity_DecryptFile_Property_InputFile_Description; + InputFilePath.DisplayName = Resources.Activity_DecryptFile_Property_InputFilePath_Name; + InputFilePath.Tooltip = Resources.Activity_DecryptFile_Property_InputFilePath_Description; + Algorithm.DisplayName = Resources.Activity_DecryptFile_Property_Algorithm_Name; + Algorithm.Tooltip = Resources.Activity_DecryptFile_Property_Algorithm_Description; + Key.DisplayName = Resources.Activity_DecryptFile_Property_Key_Name; + Key.Tooltip = Resources.Activity_DecryptFile_Property_Key_Description; + KeySecureString.DisplayName = Resources.Activity_DecryptFile_Property_KeySecureString_Name; + KeySecureString.Tooltip = Resources.Activity_DecryptFile_Property_KeySecureString_Description; + OutputFilePath.DisplayName = Resources.Activity_DecryptFile_Property_OutputFilePath_Name; + OutputFilePath.Tooltip = Resources.Activity_DecryptFile_Property_OutputFilePath_Description; + KeyEncodingString.DisplayName = Resources.Activity_DecryptFile_Property_KeyEncodingString_Name; + KeyEncodingString.Tooltip = Resources.Activity_DecryptFile_Property_KeyEncodingString_Description; + Format.DisplayName = Resources.Activity_DecryptFile_Property_Format_Name; + Format.Tooltip = Resources.Activity_DecryptFile_Property_Format_Description; + KeyFormat.DisplayName = Resources.Activity_DecryptFile_Property_KeyFormat_Name; + KeyFormat.Tooltip = Resources.Activity_DecryptFile_Property_KeyFormat_Description; + KdfIterations.DisplayName = Resources.Activity_DecryptFile_Property_KdfIterations_Name; + KdfIterations.Tooltip = Resources.Activity_DecryptFile_Property_KdfIterations_Description; + AesKeySize.DisplayName = Resources.Activity_DecryptFile_Property_AesKeySize_Name; + AesKeySize.Tooltip = Resources.Activity_DecryptFile_Property_AesKeySize_Description; + Overwrite.DisplayName = Resources.Activity_DecryptFile_Property_Overwrite_Name; + Overwrite.Tooltip = Resources.Activity_DecryptFile_Property_Overwrite_Description; + ContinueOnError.DisplayName = Resources.Activity_DecryptFile_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_DecryptFile_Property_ContinueOnError_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_DecryptFile_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_DecryptFile_Property_PrivateKeyFilePath_Description; + Passphrase.DisplayName = Resources.Activity_DecryptFile_Property_Passphrase_Name; + Passphrase.Tooltip = Resources.Activity_DecryptFile_Property_Passphrase_Description; + PassphraseSecureString.DisplayName = Resources.Activity_DecryptFile_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_DecryptFile_Property_PassphraseSecureString_Description; + VerifySignature.DisplayName = Resources.Activity_DecryptFile_Property_VerifySignature_Name; + VerifySignature.Tooltip = Resources.Activity_DecryptFile_Property_VerifySignature_Description; + PublicKeyFilePath.DisplayName = Resources.Activity_DecryptFile_Property_PublicKeyFilePath_Name; + PublicKeyFilePath.Tooltip = Resources.Activity_DecryptFile_Property_PublicKeyFilePath_Description; + PublicKeyFile.DisplayName = Resources.Activity_DecryptFile_Property_PublicKeyFile_Name; + PublicKeyFile.Tooltip = Resources.Activity_DecryptFile_Property_PublicKeyFile_Description; + DecryptedFile.DisplayName = Resources.Activity_DecryptFile_Property_DecryptedFile_Name; + DecryptedFile.Tooltip = Resources.Activity_DecryptFile_Property_DecryptedFile_Description; + } + private void ApplyInputFileVisibility() { bool useResource = _inputFileToggle.UseSecondary; diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptTextViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptTextViewModel.cs index 1bdf260b..5795bc1a 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptTextViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/DecryptTextViewModel.cs @@ -32,6 +32,7 @@ protected override void InitializeModel() var orderIndex = 1; Input.IsPrincipal = true; + Input.IsRequired = true; Input.OrderIndex = orderIndex++; Input.Category = Resources.Input; @@ -44,6 +45,7 @@ protected override void InitializeModel() Result.Category = Resources.Output; ConfigureTailProperties(ref orderIndex); + ConfigurePropertyTexts(); ConfigureKeyInputModeMenuActions(); ConfigurePublicKeyFileMenuActions(); ConfigurePassphraseInputModeMenuActions(); @@ -53,5 +55,45 @@ protected override void OnAlgorithmChanged(bool isPgp) { PlaintextEncodingString.IsVisible = !isPgp; } + + private void ConfigurePropertyTexts() + { + Algorithm.DisplayName = Resources.Activity_DecryptText_Property_Algorithm_Name; + Algorithm.Tooltip = Resources.Activity_DecryptText_Property_Algorithm_Description; + Input.DisplayName = Resources.Activity_DecryptText_Property_Input_Name; + Input.Tooltip = Resources.Activity_DecryptText_Property_Input_Description; + Key.DisplayName = Resources.Activity_DecryptText_Property_Key_Name; + Key.Tooltip = Resources.Activity_DecryptText_Property_Key_Description; + KeySecureString.DisplayName = Resources.Activity_DecryptText_Property_KeySecureString_Name; + KeySecureString.Tooltip = Resources.Activity_DecryptText_Property_KeySecureString_Description; + KeyEncodingString.DisplayName = Resources.Activity_DecryptText_Property_KeyEncodingString_Name; + KeyEncodingString.Tooltip = Resources.Activity_DecryptText_Property_KeyEncodingString_Description; + PlaintextEncodingString.DisplayName = Resources.Activity_DecryptText_Property_PlaintextEncodingString_Name; + PlaintextEncodingString.Tooltip = Resources.Activity_DecryptText_Property_PlaintextEncodingString_Description; + Format.DisplayName = Resources.Activity_DecryptText_Property_Format_Name; + Format.Tooltip = Resources.Activity_DecryptText_Property_Format_Description; + KeyFormat.DisplayName = Resources.Activity_DecryptText_Property_KeyFormat_Name; + KeyFormat.Tooltip = Resources.Activity_DecryptText_Property_KeyFormat_Description; + KdfIterations.DisplayName = Resources.Activity_DecryptText_Property_KdfIterations_Name; + KdfIterations.Tooltip = Resources.Activity_DecryptText_Property_KdfIterations_Description; + AesKeySize.DisplayName = Resources.Activity_DecryptText_Property_AesKeySize_Name; + AesKeySize.Tooltip = Resources.Activity_DecryptText_Property_AesKeySize_Description; + ContinueOnError.DisplayName = Resources.Activity_DecryptText_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_DecryptText_Property_ContinueOnError_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_DecryptText_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_DecryptText_Property_PrivateKeyFilePath_Description; + Passphrase.DisplayName = Resources.Activity_DecryptText_Property_Passphrase_Name; + Passphrase.Tooltip = Resources.Activity_DecryptText_Property_Passphrase_Description; + PassphraseSecureString.DisplayName = Resources.Activity_DecryptText_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_DecryptText_Property_PassphraseSecureString_Description; + VerifySignature.DisplayName = Resources.Activity_DecryptText_Property_VerifySignature_Name; + VerifySignature.Tooltip = Resources.Activity_DecryptText_Property_VerifySignature_Description; + PublicKeyFilePath.DisplayName = Resources.Activity_DecryptText_Property_PublicKeyFilePath_Name; + PublicKeyFilePath.Tooltip = Resources.Activity_DecryptText_Property_PublicKeyFilePath_Description; + PublicKeyFile.DisplayName = Resources.Activity_DecryptText_Property_PublicKeyFile_Name; + PublicKeyFile.Tooltip = Resources.Activity_DecryptText_Property_PublicKeyFile_Description; + Result.DisplayName = Resources.Activity_DecryptText_Property_Result_Name; + Result.Tooltip = Resources.Activity_DecryptText_Property_Result_Description; + } } } diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptCryptoViewModelBase.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptCryptoViewModelBase.cs index 834054cd..bc146d07 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptCryptoViewModelBase.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptCryptoViewModelBase.cs @@ -87,6 +87,7 @@ protected EncryptCryptoViewModelBase(IDesignServices services) : base(services) protected void ConfigureAlgorithmAndKeyProperties(ref int orderIndex) { Algorithm.IsPrincipal = true; + Algorithm.IsRequired = true; Algorithm.OrderIndex = orderIndex++; Algorithm.Category = Resources.Input; Algorithm.DataSource = DataSourceHelper.ForEnum( @@ -102,6 +103,8 @@ protected void ConfigureAlgorithmAndKeyProperties(ref int orderIndex) EncryptionAlgorithm.TripleDES); Algorithm.Widget = new DefaultWidget { Type = ViewModelWidgetType.Dropdown }; + DeprecatedWarning.IsPrincipal = true; + DeprecatedWarning.IsVisible = false; DeprecatedWarning.OrderIndex = orderIndex++; DeprecatedWarning.Category = Resources.Input; DeprecatedWarning.Widget = new TextBlockWidget @@ -121,9 +124,8 @@ protected void ConfigureAlgorithmAndKeyProperties(ref int orderIndex) orderIndex++; KeyEncodingString.IsPrincipal = false; - KeyEncodingString.IsVisible = true; KeyEncodingString.OrderIndex = orderIndex++; - KeyEncodingString.Category = Resources.Input; + KeyEncodingString.Category = Resources.Category_Options_Name; KeyEncodingString.DataSource = _encodingDataSource; KeyEncodingString.Widget = new DefaultWidget { Type = ViewModelWidgetType.Dropdown, Metadata = new Dictionary() }; @@ -155,7 +157,6 @@ protected void ConfigureEncodingDropdown(DesignInArgument encodingProper protected void ConfigureInteropProperties(ref int orderIndex) { Format.IsPrincipal = false; - Format.IsVisible = true; Format.OrderIndex = orderIndex++; Format.Category = Resources.Input; Format.DataSource = DataSourceHelper.ForEnum( diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptFileViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptFileViewModel.cs index ff0943ad..6d68ae9c 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptFileViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptFileViewModel.cs @@ -49,12 +49,11 @@ protected override void InitializeModel() ConfigureInteropProperties(ref orderIndex); OutputFilePath.IsPrincipal = false; - OutputFilePath.IsVisible = true; OutputFilePath.IsRequired = false; OutputFilePath.OrderIndex = orderIndex++; - OutputFilePath.Category = Resources.Input; + OutputFilePath.Category = Resources.Category_Options_Name; - Overwrite.IsPrincipal = false; + Overwrite.IsPrincipal = true; Overwrite.OrderIndex = orderIndex++; Overwrite.Category = Resources.Category_Options_Name; Overwrite.Widget = new DefaultWidget { Type = ViewModelWidgetType.Toggle }; @@ -68,6 +67,8 @@ protected override void InitializeModel() EncryptedFile.IsPrincipal = false; EncryptedFile.OrderIndex = orderIndex; EncryptedFile.Category = Resources.Output; + + ConfigurePropertyTexts(); } private void ConfigureInputFileMenuActions() @@ -76,6 +77,52 @@ private void ConfigureInputFileMenuActions() ApplyInputFileVisibility(); } + private void ConfigurePropertyTexts() + { + InputFile.DisplayName = Resources.Activity_EncryptFile_Property_InputFile_Name; + InputFile.Tooltip = Resources.Activity_EncryptFile_Property_InputFile_Description; + InputFilePath.DisplayName = Resources.Activity_EncryptFile_Property_InputFilePath_Name; + InputFilePath.Tooltip = Resources.Activity_EncryptFile_Property_InputFilePath_Description; + Algorithm.DisplayName = Resources.Activity_EncryptFile_Property_Algorithm_Name; + Algorithm.Tooltip = Resources.Activity_EncryptFile_Property_Algorithm_Description; + Key.DisplayName = Resources.Activity_EncryptFile_Property_Key_Name; + Key.Tooltip = Resources.Activity_EncryptFile_Property_Key_Description; + KeySecureString.DisplayName = Resources.Activity_EncryptFile_Property_KeySecureString_Name; + KeySecureString.Tooltip = Resources.Activity_EncryptFile_Property_KeySecureString_Description; + OutputFilePath.DisplayName = Resources.Activity_EncryptFile_Property_OutputFilePath_Name; + OutputFilePath.Tooltip = Resources.Activity_EncryptFile_Property_OutputFilePath_Description; + KeyEncodingString.DisplayName = Resources.Activity_EncryptFile_Property_KeyEncoding_Name; + KeyEncodingString.Tooltip = Resources.Activity_EncryptFile_Property_KeyEncoding_Description; + Format.DisplayName = Resources.Activity_EncryptFile_Property_Format_Name; + Format.Tooltip = Resources.Activity_EncryptFile_Property_Format_Description; + KeyFormat.DisplayName = Resources.Activity_EncryptFile_Property_KeyFormat_Name; + KeyFormat.Tooltip = Resources.Activity_EncryptFile_Property_KeyFormat_Description; + Iv.DisplayName = Resources.Activity_EncryptFile_Property_Iv_Name; + Iv.Tooltip = Resources.Activity_EncryptFile_Property_Iv_Description; + KdfIterations.DisplayName = Resources.Activity_EncryptFile_Property_KdfIterations_Name; + KdfIterations.Tooltip = Resources.Activity_EncryptFile_Property_KdfIterations_Description; + AesKeySize.DisplayName = Resources.Activity_EncryptFile_Property_AesKeySize_Name; + AesKeySize.Tooltip = Resources.Activity_EncryptFile_Property_AesKeySize_Description; + Overwrite.DisplayName = Resources.Activity_EncryptFile_Property_Overwrite_Name; + Overwrite.Tooltip = Resources.Activity_EncryptFile_Property_Overwrite_Description; + ContinueOnError.DisplayName = Resources.Activity_EncryptFile_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_EncryptFile_Property_ContinueOnError_Description; + PublicKeyFile.DisplayName = Resources.Activity_EncryptFile_Property_PublicKeyFile_Name; + PublicKeyFile.Tooltip = Resources.Activity_EncryptFile_Property_PublicKeyFile_Description; + PublicKeyFilePath.DisplayName = Resources.Activity_EncryptFile_Property_PublicKeyFilePath_Name; + PublicKeyFilePath.Tooltip = Resources.Activity_EncryptFile_Property_PublicKeyFilePath_Description; + SignData.DisplayName = Resources.Activity_EncryptFile_Property_SignData_Name; + SignData.Tooltip = Resources.Activity_EncryptFile_Property_SignData_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_EncryptFile_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_EncryptFile_Property_PrivateKeyFilePath_Description; + Passphrase.DisplayName = Resources.Activity_EncryptFile_Property_Passphrase_Name; + Passphrase.Tooltip = Resources.Activity_EncryptFile_Property_Passphrase_Description; + PassphraseSecureString.DisplayName = Resources.Activity_EncryptFile_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_EncryptFile_Property_PassphraseSecureString_Description; + EncryptedFile.DisplayName = Resources.Activity_EncryptFile_Property_EncryptedFile_Name; + EncryptedFile.Tooltip = Resources.Activity_EncryptFile_Property_EncryptedFile_Description; + } + private void ApplyInputFileVisibility() { bool useResource = _inputFileToggle.UseSecondary; diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptTextViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptTextViewModel.cs index 906cb378..066d4618 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptTextViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/EncryptTextViewModel.cs @@ -23,7 +23,7 @@ public EncryptTextViewModel(IDesignServices services) : base(services) } public DesignInArgument Input { get; set; } = new DesignInArgument(); - public DesignInArgument PlaintextEncodingString { get; set; } = new(); + public DesignInArgument PlaintextEncodingString { get; set; } = new() { Name = nameof(PlaintextEncodingString) }; public DesignOutArgument Result { get; set; } = new DesignOutArgument(); protected override void InitializeModel() @@ -32,6 +32,7 @@ protected override void InitializeModel() var orderIndex = 1; Input.IsPrincipal = true; + Input.IsRequired = true; Input.OrderIndex = orderIndex++; Input.Category = Resources.Input; @@ -44,6 +45,7 @@ protected override void InitializeModel() Result.Category = Resources.Output; ConfigureTailProperties(ref orderIndex); + ConfigurePropertyTexts(); ConfigureKeyInputModeMenuActions(); ConfigurePublicKeyFileMenuActions(); ConfigurePassphraseInputModeMenuActions(); @@ -53,5 +55,47 @@ protected override void OnAlgorithmChanged(bool isPgp) { PlaintextEncodingString.IsVisible = !isPgp; } + + private void ConfigurePropertyTexts() + { + Algorithm.DisplayName = Resources.Activity_EncryptText_Property_Algorithm_Name; + Algorithm.Tooltip = Resources.Activity_EncryptText_Property_Algorithm_Description; + Input.DisplayName = Resources.Activity_EncryptText_Property_Input_Name; + Input.Tooltip = Resources.Activity_EncryptText_Property_Input_Description; + Key.DisplayName = Resources.Activity_EncryptText_Property_Key_Name; + Key.Tooltip = Resources.Activity_EncryptText_Property_Key_Description; + KeySecureString.DisplayName = Resources.Activity_EncryptText_Property_KeySecureString_Name; + KeySecureString.Tooltip = Resources.Activity_EncryptText_Property_KeySecureString_Description; + KeyEncodingString.DisplayName = Resources.Activity_EncryptText_Property_KeyEncodingString_Name; + KeyEncodingString.Tooltip = Resources.Activity_EncryptText_Property_KeyEncodingString_Description; + PlaintextEncodingString.DisplayName = Resources.Activity_EncryptText_Property_PlaintextEncodingString_Name; + PlaintextEncodingString.Tooltip = Resources.Activity_EncryptText_Property_PlaintextEncodingString_Description; + Format.DisplayName = Resources.Activity_EncryptText_Property_Format_Name; + Format.Tooltip = Resources.Activity_EncryptText_Property_Format_Description; + KeyFormat.DisplayName = Resources.Activity_EncryptText_Property_KeyFormat_Name; + KeyFormat.Tooltip = Resources.Activity_EncryptText_Property_KeyFormat_Description; + Iv.DisplayName = Resources.Activity_EncryptText_Property_Iv_Name; + Iv.Tooltip = Resources.Activity_EncryptText_Property_Iv_Description; + KdfIterations.DisplayName = Resources.Activity_EncryptText_Property_KdfIterations_Name; + KdfIterations.Tooltip = Resources.Activity_EncryptText_Property_KdfIterations_Description; + AesKeySize.DisplayName = Resources.Activity_EncryptText_Property_AesKeySize_Name; + AesKeySize.Tooltip = Resources.Activity_EncryptText_Property_AesKeySize_Description; + ContinueOnError.DisplayName = Resources.Activity_EncryptText_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_EncryptText_Property_ContinueOnError_Description; + PublicKeyFile.DisplayName = Resources.Activity_EncryptText_Property_PublicKeyFile_Name; + PublicKeyFile.Tooltip = Resources.Activity_EncryptText_Property_PublicKeyFile_Description; + PublicKeyFilePath.DisplayName = Resources.Activity_EncryptText_Property_PublicKeyFilePath_Name; + PublicKeyFilePath.Tooltip = Resources.Activity_EncryptText_Property_PublicKeyFilePath_Description; + SignData.DisplayName = Resources.Activity_EncryptText_Property_SignData_Name; + SignData.Tooltip = Resources.Activity_EncryptText_Property_SignData_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_EncryptText_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_EncryptText_Property_PrivateKeyFilePath_Description; + Passphrase.DisplayName = Resources.Activity_EncryptText_Property_Passphrase_Name; + Passphrase.Tooltip = Resources.Activity_EncryptText_Property_Passphrase_Description; + PassphraseSecureString.DisplayName = Resources.Activity_EncryptText_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_EncryptText_Property_PassphraseSecureString_Description; + Result.DisplayName = Resources.Activity_EncryptText_Property_Result_Name; + Result.Tooltip = Resources.Activity_EncryptText_Property_Result_Description; + } } } diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashFileViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashFileViewModel.cs index ae5f4a50..b9cefb95 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashFileViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashFileViewModel.cs @@ -66,6 +66,7 @@ protected override void InitializeModel() propertyOrderIndex++; Algorithm.IsPrincipal = true; + Algorithm.IsRequired = true; Algorithm.OrderIndex = propertyOrderIndex++; Algorithm.Category = Resources.Input; Algorithm.DataSource = DataSourceHelper.ForEnum( @@ -92,16 +93,15 @@ protected override void InitializeModel() propertyOrderIndex++; KeyEncodingString.IsPrincipal = false; - KeyEncodingString.IsVisible = true; KeyEncodingString.OrderIndex = propertyOrderIndex++; - KeyEncodingString.Category = Resources.Input; + KeyEncodingString.Category = Resources.Category_Options_Name; KeyEncodingString.DataSource = _encodingDataSource; KeyEncodingString.Widget = new DefaultWidget { Type = ViewModelWidgetType.Dropdown, Metadata = new Dictionary() }; _encodingDataSource.Data = EncodingHelpers.GetAvailableEncodings(); - Result.IsPrincipal = false; + Result.IsPrincipal = true; Result.OrderIndex = propertyOrderIndex++; Result.Category = Resources.Output; @@ -116,6 +116,27 @@ protected override void InitializeModel() _inputFileToggle.ConfigureMenuActions(); ApplyInputFileVisibility(); + ConfigurePropertyTexts(); + } + + private void ConfigurePropertyTexts() + { + InputFile.DisplayName = Resources.Activity_KeyedHashFile_Property_InputFile_Name; + InputFile.Tooltip = Resources.Activity_KeyedHashFile_Property_InputFile_Description; + FilePath.DisplayName = Resources.Activity_KeyedHashFile_Property_FilePath_Name; + FilePath.Tooltip = Resources.Activity_KeyedHashFile_Property_FilePath_Description; + Algorithm.DisplayName = Resources.Activity_KeyedHashFile_Property_Algorithm_Name; + Algorithm.Tooltip = Resources.Activity_KeyedHashFile_Property_Algorithm_Description; + Key.DisplayName = Resources.Activity_KeyedHashFile_Property_Key_Name; + Key.Tooltip = Resources.Activity_KeyedHashFile_Property_Key_Description; + KeySecureString.DisplayName = Resources.Activity_KeyedHashFile_Property_KeySecureString_Name; + KeySecureString.Tooltip = Resources.Activity_KeyedHashFile_Property_KeySecureString_Description; + KeyEncodingString.DisplayName = Resources.Activity_KeyedHashFile_Property_KeyEncodingString_Name; + KeyEncodingString.Tooltip = Resources.Activity_KeyedHashFile_Property_KeyEncodingString_Description; + Result.DisplayName = Resources.Activity_KeyedHashFile_Property_Result_Name; + Result.Tooltip = Resources.Activity_KeyedHashFile_Property_Result_Description; + ContinueOnError.DisplayName = Resources.Activity_KeyedHashFile_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_KeyedHashFile_Property_ContinueOnError_Description; } private void ApplyKeyInputModeVisibility() diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashTextViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashTextViewModel.cs index 37ac003e..4bde9fa0 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashTextViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/KeyedHashTextViewModel.cs @@ -71,6 +71,7 @@ protected override void InitializeModel() Input.Category = Resources.Input; Algorithm.IsPrincipal = true; + Algorithm.IsRequired = true; Algorithm.OrderIndex = propertyOrderIndex++; Algorithm.Category = Resources.Input; Algorithm.DataSource = DataSourceHelper.ForEnum( @@ -97,16 +98,15 @@ protected override void InitializeModel() propertyOrderIndex++; KeyEncodingString.IsPrincipal = false; - KeyEncodingString.IsVisible = true; KeyEncodingString.OrderIndex = propertyOrderIndex++; - KeyEncodingString.Category = Resources.Input; + KeyEncodingString.Category = Resources.Category_Options_Name; KeyEncodingString.DataSource = _encodingDataSource; KeyEncodingString.Widget = new DefaultWidget { Type = ViewModelWidgetType.Dropdown, Metadata = new Dictionary() }; _encodingDataSource.Data = EncodingHelpers.GetAvailableEncodings(); - Result.IsPrincipal = false; + Result.IsPrincipal = true; Result.OrderIndex = propertyOrderIndex++; Result.Category = Resources.Output; @@ -118,6 +118,25 @@ protected override void InitializeModel() _keyToggle.ConfigureMenuActions(); ApplyKeyInputModeVisibility(); + ConfigurePropertyTexts(); + } + + private void ConfigurePropertyTexts() + { + Input.DisplayName = Resources.Activity_KeyedHashText_Property_Input_Name; + Input.Tooltip = Resources.Activity_KeyedHashText_Property_Input_Description; + Algorithm.DisplayName = Resources.Activity_KeyedHashText_Property_Algorithm_Name; + Algorithm.Tooltip = Resources.Activity_KeyedHashText_Property_Algorithm_Description; + Key.DisplayName = Resources.Activity_KeyedHashText_Property_Key_Name; + Key.Tooltip = Resources.Activity_KeyedHashText_Property_Key_Description; + KeySecureString.DisplayName = Resources.Activity_KeyedHashText_Property_KeySecureString_Name; + KeySecureString.Tooltip = Resources.Activity_KeyedHashText_Property_KeySecureString_Description; + KeyEncodingString.DisplayName = Resources.Activity_KeyedHashText_Property_KeyEncodingString_Name; + KeyEncodingString.Tooltip = Resources.Activity_KeyedHashText_Property_KeyEncodingString_Description; + Result.DisplayName = Resources.Activity_KeyedHashText_Property_Result_Name; + Result.Tooltip = Resources.Activity_KeyedHashText_Property_Result_Description; + ContinueOnError.DisplayName = Resources.Activity_KeyedHashText_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_KeyedHashText_Property_ContinueOnError_Description; } private void ApplyKeyInputModeVisibility() diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpClearSignFileViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpClearSignFileViewModel.cs index d290c687..8cde1f37 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpClearSignFileViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpClearSignFileViewModel.cs @@ -30,5 +30,29 @@ protected override void InitializeOutputProperty(int orderIndex) ClearSignedFile.OrderIndex = orderIndex; ClearSignedFile.Category = Resources.Output; } + + protected override void ConfigurePropertyTexts() + { + InputFilePath.DisplayName = Resources.Activity_PgpClearSignFile_Property_InputFilePath_Name; + InputFilePath.Tooltip = Resources.Activity_PgpClearSignFile_Property_InputFilePath_Description; + InputFile.DisplayName = Resources.Activity_PgpClearSignFile_Property_InputFile_Name; + InputFile.Tooltip = Resources.Activity_PgpClearSignFile_Property_InputFile_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_PgpClearSignFile_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_PgpClearSignFile_Property_PrivateKeyFilePath_Description; + PrivateKeyFile.DisplayName = Resources.Activity_PgpClearSignFile_Property_PrivateKeyFile_Name; + PrivateKeyFile.Tooltip = Resources.Activity_PgpClearSignFile_Property_PrivateKeyFile_Description; + Passphrase.DisplayName = Resources.Activity_PgpClearSignFile_Property_Passphrase_Name; + Passphrase.Tooltip = Resources.Activity_PgpClearSignFile_Property_Passphrase_Description; + PassphraseSecureString.DisplayName = Resources.Activity_PgpClearSignFile_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_PgpClearSignFile_Property_PassphraseSecureString_Description; + OutputFilePath.DisplayName = Resources.Activity_PgpClearSignFile_Property_OutputFilePath_Name; + OutputFilePath.Tooltip = Resources.Activity_PgpClearSignFile_Property_OutputFilePath_Description; + Overwrite.DisplayName = Resources.Activity_PgpClearSignFile_Property_Overwrite_Name; + Overwrite.Tooltip = Resources.Activity_PgpClearSignFile_Property_Overwrite_Description; + ContinueOnError.DisplayName = Resources.Activity_PgpClearSignFile_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_PgpClearSignFile_Property_ContinueOnError_Description; + ClearSignedFile.DisplayName = Resources.Activity_PgpClearSignFile_Property_ClearSignedFile_Name; + ClearSignedFile.Tooltip = Resources.Activity_PgpClearSignFile_Property_ClearSignedFile_Description; + } } } diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpGenerateKeysViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpGenerateKeysViewModel.cs index 18197949..38a40122 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpGenerateKeysViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpGenerateKeysViewModel.cs @@ -63,10 +63,12 @@ protected override void InitializeModel() PrivateKeyFilePath.Category = Resources.Input; Passphrase.IsPrincipal = true; + Passphrase.IsRequired = true; Passphrase.OrderIndex = orderIndex; Passphrase.Category = Resources.Input; PassphraseSecureString.IsPrincipal = true; + PassphraseSecureString.IsRequired = true; PassphraseSecureString.OrderIndex = orderIndex; PassphraseSecureString.Category = Resources.Input; orderIndex++; @@ -103,6 +105,31 @@ protected override void InitializeModel() PrivateKeyFile.EditPlaceholder = Resources.Activity_PgpGenerateKeys_Property_PrivateKeyFile_Hint; ConfigurePassphraseInputModeMenuActions(); + ConfigurePropertyTexts(); + } + + private void ConfigurePropertyTexts() + { + PublicKeyFilePath.DisplayName = Resources.Activity_PgpGenerateKeys_Property_PublicKeyFilePath_Name; + PublicKeyFilePath.Tooltip = Resources.Activity_PgpGenerateKeys_Property_PublicKeyFilePath_Description; + UserId.DisplayName = Resources.Activity_PgpGenerateKeys_Property_UserId_Name; + UserId.Tooltip = Resources.Activity_PgpGenerateKeys_Property_UserId_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_PgpGenerateKeys_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_PgpGenerateKeys_Property_PrivateKeyFilePath_Description; + Passphrase.DisplayName = Resources.Activity_PgpGenerateKeys_Property_Password_Name; + Passphrase.Tooltip = Resources.Activity_PgpGenerateKeys_Property_Password_Description; + PassphraseSecureString.DisplayName = Resources.Activity_PgpGenerateKeys_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_PgpGenerateKeys_Property_PassphraseSecureString_Description; + Overwrite.DisplayName = Resources.Activity_PgpGenerateKeys_Property_Overwrite_Name; + Overwrite.Tooltip = Resources.Activity_PgpGenerateKeys_Property_Overwrite_Description; + KeySize.DisplayName = Resources.Activity_PgpGenerateKeys_Property_KeySize_Name; + KeySize.Tooltip = Resources.Activity_PgpGenerateKeys_Property_KeySize_Description; + ContinueOnError.DisplayName = Resources.Activity_PgpGenerateKeys_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_PgpGenerateKeys_Property_ContinueOnError_Description; + PublicKeyFile.DisplayName = Resources.Activity_PgpGenerateKeys_Property_PublicKeyFile_Name; + PublicKeyFile.Tooltip = Resources.Activity_PgpGenerateKeys_Property_PublicKeyFile_Description; + PrivateKeyFile.DisplayName = Resources.Activity_PgpGenerateKeys_Property_PrivateKeyFile_Name; + PrivateKeyFile.Tooltip = Resources.Activity_PgpGenerateKeys_Property_PrivateKeyFile_Description; } /// diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignFileViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignFileViewModel.cs index 256256c3..8415ef04 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignFileViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignFileViewModel.cs @@ -30,5 +30,29 @@ protected override void InitializeOutputProperty(int orderIndex) SignedFile.OrderIndex = orderIndex; SignedFile.Category = Resources.Output; } + + protected override void ConfigurePropertyTexts() + { + InputFilePath.DisplayName = Resources.Activity_PgpSignFile_Property_InputFilePath_Name; + InputFilePath.Tooltip = Resources.Activity_PgpSignFile_Property_InputFilePath_Description; + InputFile.DisplayName = Resources.Activity_PgpSignFile_Property_InputFile_Name; + InputFile.Tooltip = Resources.Activity_PgpSignFile_Property_InputFile_Description; + PrivateKeyFilePath.DisplayName = Resources.Activity_PgpSignFile_Property_PrivateKeyFilePath_Name; + PrivateKeyFilePath.Tooltip = Resources.Activity_PgpSignFile_Property_PrivateKeyFilePath_Description; + PrivateKeyFile.DisplayName = Resources.Activity_PgpSignFile_Property_PrivateKeyFile_Name; + PrivateKeyFile.Tooltip = Resources.Activity_PgpSignFile_Property_PrivateKeyFile_Description; + Passphrase.DisplayName = Resources.Activity_PgpSignFile_Property_Passphrase_Name; + Passphrase.Tooltip = Resources.Activity_PgpSignFile_Property_Passphrase_Description; + PassphraseSecureString.DisplayName = Resources.Activity_PgpSignFile_Property_PassphraseSecureString_Name; + PassphraseSecureString.Tooltip = Resources.Activity_PgpSignFile_Property_PassphraseSecureString_Description; + OutputFilePath.DisplayName = Resources.Activity_PgpSignFile_Property_OutputFilePath_Name; + OutputFilePath.Tooltip = Resources.Activity_PgpSignFile_Property_OutputFilePath_Description; + Overwrite.DisplayName = Resources.Activity_PgpSignFile_Property_Overwrite_Name; + Overwrite.Tooltip = Resources.Activity_PgpSignFile_Property_Overwrite_Description; + ContinueOnError.DisplayName = Resources.Activity_PgpSignFile_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_PgpSignFile_Property_ContinueOnError_Description; + SignedFile.DisplayName = Resources.Activity_PgpSignFile_Property_SignedFile_Name; + SignedFile.Tooltip = Resources.Activity_PgpSignFile_Property_SignedFile_Description; + } } } diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignViewModelBase.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignViewModelBase.cs index a65055a6..2ab25352 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignViewModelBase.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpSignViewModelBase.cs @@ -59,28 +59,34 @@ protected override void InitializeModel() var orderIndex = 1; InputFilePath.IsPrincipal = true; + InputFilePath.IsRequired = true; InputFilePath.OrderIndex = orderIndex; InputFilePath.Category = Resources.Input; InputFile.IsPrincipal = true; + InputFile.IsVisible = false; InputFile.OrderIndex = orderIndex; InputFile.Category = Resources.Input; orderIndex++; PrivateKeyFilePath.IsPrincipal = true; + PrivateKeyFilePath.IsRequired = true; PrivateKeyFilePath.OrderIndex = orderIndex; PrivateKeyFilePath.Category = Resources.Input; PrivateKeyFile.IsPrincipal = true; + PrivateKeyFile.IsVisible = false; PrivateKeyFile.OrderIndex = orderIndex; PrivateKeyFile.Category = Resources.Input; orderIndex++; Passphrase.IsPrincipal = true; + Passphrase.IsRequired = true; Passphrase.OrderIndex = orderIndex; Passphrase.Category = Resources.Input; PassphraseSecureString.IsPrincipal = true; + PassphraseSecureString.IsRequired = true; PassphraseSecureString.OrderIndex = orderIndex; PassphraseSecureString.Category = Resources.Input; orderIndex++; @@ -88,7 +94,7 @@ protected override void InitializeModel() OutputFilePath.IsPrincipal = false; OutputFilePath.IsRequired = false; OutputFilePath.OrderIndex = orderIndex++; - OutputFilePath.Category = Resources.Input; + OutputFilePath.Category = Resources.Category_Options_Name; Overwrite.IsPrincipal = false; Overwrite.OrderIndex = orderIndex++; @@ -111,9 +117,11 @@ protected override void InitializeModel() ApplyPassphraseVisibility(); InitializeOutputProperty(orderIndex); + ConfigurePropertyTexts(); } protected abstract void InitializeOutputProperty(int orderIndex); + protected abstract void ConfigurePropertyTexts(); private void ApplyInputFileVisibility() { diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpVerifyViewModel.cs b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpVerifyViewModel.cs index 94f6b05a..3053f3a0 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpVerifyViewModel.cs +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/NetCore/ViewModels/PgpVerifyViewModel.cs @@ -57,6 +57,7 @@ protected override void InitializeModel() var orderIndex = 1; Mode.IsPrincipal = true; + Mode.IsRequired = true; Mode.OrderIndex = orderIndex++; Mode.Category = Resources.Input; Mode.DataSource = DataSourceHelper.ForEnum( @@ -67,6 +68,7 @@ protected override void InitializeModel() Mode.Value = PgpVerifyMode.Signature; InputFile.IsPrincipal = true; + InputFile.IsVisible = false; InputFile.OrderIndex = orderIndex; InputFile.Category = Resources.Input; @@ -75,10 +77,12 @@ protected override void InitializeModel() InputFilePath.Category = Resources.Input; PublicKeyFile.IsPrincipal = true; + PublicKeyFile.IsVisible = false; PublicKeyFile.OrderIndex = orderIndex; PublicKeyFile.Category = Resources.Input; PublicKeyFilePath.IsPrincipal = true; + PublicKeyFilePath.IsRequired = true; PublicKeyFilePath.OrderIndex = orderIndex++; PublicKeyFilePath.Category = Resources.Input; @@ -97,6 +101,25 @@ protected override void InitializeModel() _publicKeyFileToggle.ConfigureMenuActions(); ApplyPublicKeyVisibility(); + ConfigurePropertyTexts(); + } + + private void ConfigurePropertyTexts() + { + Mode.DisplayName = Resources.Activity_PgpVerify_Property_Mode_Name; + Mode.Tooltip = Resources.Activity_PgpVerify_Property_Mode_Description; + InputFile.DisplayName = Resources.Activity_PgpVerify_Property_InputFile_Name; + InputFile.Tooltip = Resources.Activity_PgpVerify_Property_InputFile_Description; + InputFilePath.DisplayName = Resources.Activity_PgpVerify_Property_InputFilePath_Name; + InputFilePath.Tooltip = Resources.Activity_PgpVerify_Property_InputFilePath_Description; + PublicKeyFile.DisplayName = Resources.Activity_PgpVerify_Property_PublicKeyFile_Name; + PublicKeyFile.Tooltip = Resources.Activity_PgpVerify_Property_PublicKeyFile_Description; + PublicKeyFilePath.DisplayName = Resources.Activity_PgpVerify_Property_PublicKeyFilePath_Name; + PublicKeyFilePath.Tooltip = Resources.Activity_PgpVerify_Property_PublicKeyFilePath_Description; + ContinueOnError.DisplayName = Resources.Activity_PgpVerify_Property_ContinueOnError_Name; + ContinueOnError.Tooltip = Resources.Activity_PgpVerify_Property_ContinueOnError_Description; + Result.DisplayName = Resources.Activity_PgpVerify_Property_Result_Name; + Result.Tooltip = Resources.Activity_PgpVerify_Property_Result_Description; } private void ApplyInputFileVisibility() diff --git a/Activities/Cryptography/UiPath.Cryptography.Activities/Resources/ActivitiesMetadata.json b/Activities/Cryptography/UiPath.Cryptography.Activities/Resources/ActivitiesMetadata.json index b9b1daf6..be55d805 100644 --- a/Activities/Cryptography/UiPath.Cryptography.Activities/Resources/ActivitiesMetadata.json +++ b/Activities/Cryptography/UiPath.Cryptography.Activities/Resources/ActivitiesMetadata.json @@ -9,242 +9,7 @@ "DescriptionKey": "Activity_DecryptFile_Description", "IconKey": "Decrypt_file.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.DecryptFileViewModel", - "Properties": [ - { - "Name": "Algorithm", - "DisplayNameKey": "Activity_DecryptFile_Property_Algorithm_Name", - "TooltipKey": "Activity_DecryptFile_Property_Algorithm_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFile", - "DisplayNameKey": "Activity_DecryptFile_Property_InputFile_Name", - "TooltipKey": "Activity_DecryptFile_Property_InputFile_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFilePath", - "DisplayNameKey": "Activity_DecryptFile_Property_InputFilePath_Name", - "TooltipKey": "Activity_DecryptFile_Property_InputFilePath_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Key", - "DisplayNameKey": "Activity_DecryptFile_Property_Key_Name", - "TooltipKey": "Activity_DecryptFile_Property_Key_Description", - "IsVisible": true, - "IsPrincipal": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeySecureString", - "DisplayNameKey": "Activity_DecryptFile_Property_KeySecureString_Name", - "TooltipKey": "Activity_DecryptFile_Property_KeySecureString_Description", - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "OutputFilePath", - "DisplayNameKey": "Activity_DecryptFile_Property_OutputFilePath_Name", - "TooltipKey": "Activity_DecryptFile_Property_OutputFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "KeyEncodingString", - "DisplayNameKey": "Activity_DecryptFile_Property_KeyEncodingString_Name", - "TooltipKey": "Activity_DecryptFile_Property_KeyEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Format", - "DisplayNameKey": "Activity_DecryptFile_Property_Format_Name", - "TooltipKey": "Activity_DecryptFile_Property_Format_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyFormat", - "DisplayNameKey": "Activity_DecryptFile_Property_KeyFormat_Name", - "TooltipKey": "Activity_DecryptFile_Property_KeyFormat_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KdfIterations", - "DisplayNameKey": "Activity_DecryptFile_Property_KdfIterations_Name", - "TooltipKey": "Activity_DecryptFile_Property_KdfIterations_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "AesKeySize", - "DisplayNameKey": "Activity_DecryptFile_Property_AesKeySize_Name", - "TooltipKey": "Activity_DecryptFile_Property_AesKeySize_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Overwrite", - "DisplayNameKey": "Activity_DecryptFile_Property_Overwrite_Name", - "TooltipKey": "Activity_DecryptFile_Property_Overwrite_Description", - "IsRequired": false, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_DecryptFile_Property_ContinueOnError_Name", - "TooltipKey": "Activity_DecryptFile_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_DecryptFile_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_DecryptFile_Property_PrivateKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_DecryptFile_Property_Passphrase_Name", - "TooltipKey": "Activity_DecryptFile_Property_Passphrase_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_DecryptFile_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_DecryptFile_Property_PassphraseSecureString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "VerifySignature", - "DisplayNameKey": "Activity_DecryptFile_Property_VerifySignature_Name", - "TooltipKey": "Activity_DecryptFile_Property_VerifySignature_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PublicKeyFilePath", - "DisplayNameKey": "Activity_DecryptFile_Property_PublicKeyFilePath_Name", - "TooltipKey": "Activity_DecryptFile_Property_PublicKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PublicKeyFile", - "DisplayNameKey": "Activity_DecryptFile_Property_PublicKeyFile_Name", - "TooltipKey": "Activity_DecryptFile_Property_PublicKeyFile_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "DecryptedFile", - "DisplayNameKey": "Activity_DecryptFile_Property_DecryptedFile_Name", - "TooltipKey": "Activity_DecryptFile_Property_DecryptedFile_Description", - "IsRequired": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.DecryptText", @@ -254,224 +19,7 @@ "DescriptionKey": "Activity_DecryptText_Description", "IconKey": "Decrypt_text.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.DecryptTextViewModel", - "Properties": [ - { - "Name": "Algorithm", - "DisplayNameKey": "Activity_DecryptText_Property_Algorithm_Name", - "TooltipKey": "Activity_DecryptText_Property_Algorithm_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Input", - "DisplayNameKey": "Activity_DecryptText_Property_Input_Name", - "TooltipKey": "Activity_DecryptText_Property_Input_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Key", - "DisplayNameKey": "Activity_DecryptText_Property_Key_Name", - "TooltipKey": "Activity_DecryptText_Property_Key_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeySecureString", - "DisplayNameKey": "Activity_DecryptText_Property_KeySecureString_Name", - "TooltipKey": "Activity_DecryptText_Property_KeySecureString_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyEncodingString", - "DisplayNameKey": "Activity_DecryptText_Property_KeyEncodingString_Name", - "TooltipKey": "Activity_DecryptText_Property_KeyEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PlaintextEncodingString", - "DisplayNameKey": "Activity_DecryptText_Property_PlaintextEncodingString_Name", - "TooltipKey": "Activity_DecryptText_Property_PlaintextEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Format", - "DisplayNameKey": "Activity_DecryptText_Property_Format_Name", - "TooltipKey": "Activity_DecryptText_Property_Format_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyFormat", - "DisplayNameKey": "Activity_DecryptText_Property_KeyFormat_Name", - "TooltipKey": "Activity_DecryptText_Property_KeyFormat_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KdfIterations", - "DisplayNameKey": "Activity_DecryptText_Property_KdfIterations_Name", - "TooltipKey": "Activity_DecryptText_Property_KdfIterations_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "AesKeySize", - "DisplayNameKey": "Activity_DecryptText_Property_AesKeySize_Name", - "TooltipKey": "Activity_DecryptText_Property_AesKeySize_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_DecryptText_Property_ContinueOnError_Name", - "TooltipKey": "Activity_DecryptText_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_DecryptText_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_DecryptText_Property_PrivateKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_DecryptText_Property_Passphrase_Name", - "TooltipKey": "Activity_DecryptText_Property_Passphrase_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_DecryptText_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_DecryptText_Property_PassphraseSecureString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "VerifySignature", - "DisplayNameKey": "Activity_DecryptText_Property_VerifySignature_Name", - "TooltipKey": "Activity_DecryptText_Property_VerifySignature_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PublicKeyFilePath", - "DisplayNameKey": "Activity_DecryptText_Property_PublicKeyFilePath_Name", - "TooltipKey": "Activity_DecryptText_Property_PublicKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PublicKeyFile", - "DisplayNameKey": "Activity_DecryptText_Property_PublicKeyFile_Name", - "TooltipKey": "Activity_DecryptText_Property_PublicKeyFile_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Result", - "DisplayNameKey": "Activity_DecryptText_Property_Result_Name", - "TooltipKey": "Activity_DecryptText_Property_Result_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.EncryptFile", @@ -481,263 +29,7 @@ "DescriptionKey": "Activity_EncryptFile_Description", "IconKey": "Encrypt_file.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.EncryptFileViewModel", - "Properties": [ - { - "Name": "Algorithm", - "DisplayNameKey": "Activity_EncryptFile_Property_Algorithm_Name", - "TooltipKey": "Activity_EncryptFile_Property_Algorithm_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "DeprecatedWarning", - "IsPrincipal": true, - "IsVisible": false - }, - { - "Name": "InputFilePath", - "DisplayNameKey": "Activity_EncryptFile_Property_InputFilePath_Name", - "TooltipKey": "Activity_EncryptFile_Property_InputFilePath_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFile", - "DisplayNameKey": "Activity_EncryptFile_Property_InputFile_Name", - "TooltipKey": "Activity_EncryptFile_Property_InputFile_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Key", - "DisplayNameKey": "Activity_EncryptFile_Property_Key_Name", - "TooltipKey": "Activity_EncryptFile_Property_Key_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeySecureString", - "DisplayNameKey": "Activity_EncryptFile_Property_KeySecureString_Name", - "TooltipKey": "Activity_EncryptFile_Property_KeySecureString_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - - { - "Name": "OutputFilePath", - "DisplayNameKey": "Activity_EncryptFile_Property_OutputFilePath_Name", - "TooltipKey": "Activity_EncryptFile_Property_OutputFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "KeyEncodingString", - "DisplayNameKey": "Activity_EncryptFile_Property_KeyEncoding_Name", - "TooltipKey": "Activity_EncryptFile_Property_KeyEncoding_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Format", - "DisplayNameKey": "Activity_EncryptFile_Property_Format_Name", - "TooltipKey": "Activity_EncryptFile_Property_Format_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyFormat", - "DisplayNameKey": "Activity_EncryptFile_Property_KeyFormat_Name", - "TooltipKey": "Activity_EncryptFile_Property_KeyFormat_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Iv", - "DisplayNameKey": "Activity_EncryptFile_Property_Iv_Name", - "TooltipKey": "Activity_EncryptFile_Property_Iv_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KdfIterations", - "DisplayNameKey": "Activity_EncryptFile_Property_KdfIterations_Name", - "TooltipKey": "Activity_EncryptFile_Property_KdfIterations_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "AesKeySize", - "DisplayNameKey": "Activity_EncryptFile_Property_AesKeySize_Name", - "TooltipKey": "Activity_EncryptFile_Property_AesKeySize_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Overwrite", - "DisplayNameKey": "Activity_EncryptFile_Property_Overwrite_Name", - "TooltipKey": "Activity_EncryptFile_Property_Overwrite_Description", - "IsRequired": false, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_EncryptFile_Property_ContinueOnError_Name", - "TooltipKey": "Activity_EncryptFile_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PublicKeyFile", - "DisplayNameKey": "Activity_EncryptFile_Property_PublicKeyFile_Name", - "TooltipKey": "Activity_EncryptFile_Property_PublicKeyFile_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PublicKeyFilePath", - "DisplayNameKey": "Activity_EncryptFile_Property_PublicKeyFilePath_Name", - "TooltipKey": "Activity_EncryptFile_Property_PublicKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "SignData", - "DisplayNameKey": "Activity_EncryptFile_Property_SignData_Name", - "TooltipKey": "Activity_EncryptFile_Property_SignData_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_EncryptFile_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_EncryptFile_Property_PrivateKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_EncryptFile_Property_Passphrase_Name", - "TooltipKey": "Activity_EncryptFile_Property_Passphrase_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_EncryptFile_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_EncryptFile_Property_PassphraseSecureString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "EncryptedFile", - "DisplayNameKey": "Activity_EncryptFile_Property_EncryptedFile_Name", - "TooltipKey": "Activity_EncryptFile_Property_EncryptedFile_Description", - "IsRequired": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.EncryptText", @@ -747,241 +39,7 @@ "DescriptionKey": "Activity_EncryptText_Description", "IconKey": "Encrypt_text.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.EncryptTextViewModel", - "Properties": [ - { - "Name": "Algorithm", - "DisplayNameKey": "Activity_EncryptText_Property_Algorithm_Name", - "TooltipKey": "Activity_EncryptText_Property_Algorithm_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "DeprecatedWarning", - "IsPrincipal": true, - "IsVisible": false - }, - { - "Name": "Input", - "DisplayNameKey": "Activity_EncryptText_Property_Input_Name", - "TooltipKey": "Activity_EncryptText_Property_Input_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Key", - "DisplayNameKey": "Activity_EncryptText_Property_Key_Name", - "TooltipKey": "Activity_EncryptText_Property_Key_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeySecureString", - "DisplayNameKey": "Activity_EncryptText_Property_KeySecureString_Name", - "TooltipKey": "Activity_EncryptText_Property_KeySecureString_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyEncodingString", - "DisplayNameKey": "Activity_EncryptText_Property_KeyEncodingString_Name", - "TooltipKey": "Activity_EncryptText_Property_KeyEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PlaintextEncodingString", - "DisplayNameKey": "Activity_EncryptText_Property_PlaintextEncodingString_Name", - "TooltipKey": "Activity_EncryptText_Property_PlaintextEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Format", - "DisplayNameKey": "Activity_EncryptText_Property_Format_Name", - "TooltipKey": "Activity_EncryptText_Property_Format_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyFormat", - "DisplayNameKey": "Activity_EncryptText_Property_KeyFormat_Name", - "TooltipKey": "Activity_EncryptText_Property_KeyFormat_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Iv", - "DisplayNameKey": "Activity_EncryptText_Property_Iv_Name", - "TooltipKey": "Activity_EncryptText_Property_Iv_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KdfIterations", - "DisplayNameKey": "Activity_EncryptText_Property_KdfIterations_Name", - "TooltipKey": "Activity_EncryptText_Property_KdfIterations_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "AesKeySize", - "DisplayNameKey": "Activity_EncryptText_Property_AesKeySize_Name", - "TooltipKey": "Activity_EncryptText_Property_AesKeySize_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_EncryptText_Property_ContinueOnError_Name", - "TooltipKey": "Activity_EncryptText_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PublicKeyFile", - "DisplayNameKey": "Activity_EncryptText_Property_PublicKeyFile_Name", - "TooltipKey": "Activity_EncryptText_Property_PublicKeyFile_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PublicKeyFilePath", - "DisplayNameKey": "Activity_EncryptText_Property_PublicKeyFilePath_Name", - "TooltipKey": "Activity_EncryptText_Property_PublicKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "SignData", - "DisplayNameKey": "Activity_EncryptText_Property_SignData_Name", - "TooltipKey": "Activity_EncryptText_Property_SignData_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_EncryptText_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_EncryptText_Property_PrivateKeyFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_EncryptText_Property_Passphrase_Name", - "TooltipKey": "Activity_EncryptText_Property_Passphrase_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_EncryptText_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_EncryptText_Property_PassphraseSecureString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Result", - "DisplayNameKey": "Activity_EncryptText_Property_Result_Name", - "TooltipKey": "Activity_EncryptText_Property_Result_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.KeyedHashFile", @@ -991,96 +49,7 @@ "DescriptionKey": "Activity_KeyedHashFile_Description", "IconKey": "Hash_file_with_key.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.KeyedHashFileViewModel", - "Properties": [ - { - "Name": "Algorithm", - "DisplayNameKey": "Activity_KeyedHashFile_Property_Algorithm_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_Algorithm_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFile", - "DisplayNameKey": "Activity_KeyedHashFile_Property_InputFile_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_InputFile_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "FilePath", - "DisplayNameKey": "Activity_KeyedHashFile_Property_FilePath_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_FilePath_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Key", - "DisplayNameKey": "Activity_KeyedHashFile_Property_Key_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_Key_Description", - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeySecureString", - "DisplayNameKey": "Activity_KeyedHashFile_Property_KeySecureString_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_KeySecureString_Description", - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyEncodingString", - "DisplayNameKey": "Activity_KeyedHashFile_Property_KeyEncodingString_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_KeyEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_KeyedHashFile_Property_ContinueOnError_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Result", - "DisplayNameKey": "Activity_KeyedHashFile_Property_Result_Name", - "TooltipKey": "Activity_KeyedHashFile_Property_Result_Description", - "IsRequired": false, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.KeyedHashText", @@ -1090,86 +59,7 @@ "DescriptionKey": "Activity_KeyedHashText_Description", "IconKey": "Hash_text_with_key.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.KeyedHashTextViewModel", - "Properties": [ - { - "Name": "Algorithm", - "DisplayNameKey": "Activity_KeyedHashText_Property_Algorithm_Name", - "TooltipKey": "Activity_KeyedHashText_Property_Algorithm_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Input", - "DisplayNameKey": "Activity_KeyedHashText_Property_Input_Name", - "TooltipKey": "Activity_KeyedHashText_Property_Input_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Key", - "DisplayNameKey": "Activity_KeyedHashText_Property_Key_Name", - "TooltipKey": "Activity_KeyedHashText_Property_Key_Description", - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeySecureString", - "DisplayNameKey": "Activity_KeyedHashText_Property_KeySecureString_Name", - "TooltipKey": "Activity_KeyedHashText_Property_KeySecureString_Description", - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "KeyEncodingString", - "DisplayNameKey": "Activity_KeyedHashText_Property_KeyEncodingString_Name", - "TooltipKey": "Activity_KeyedHashText_Property_KeyEncodingString_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_KeyedHashText_Property_ContinueOnError_Name", - "TooltipKey": "Activity_KeyedHashText_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Result", - "DisplayNameKey": "Activity_KeyedHashText_Property_Result_Name", - "TooltipKey": "Activity_KeyedHashText_Property_Result_Description", - "IsRequired": false, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.PgpGenerateKeys", @@ -1179,126 +69,7 @@ "DescriptionKey": "Activity_PgpGenerateKeys_Description", "IconKey": "PGP_generate_keys.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.PgpGenerateKeysViewModel", - "Properties": [ - { - "Name": "PublicKeyFilePath", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_PublicKeyFilePath_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_PublicKeyFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_PrivateKeyFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "UserId", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_UserId_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_UserId_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_Password_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_Password_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_PassphraseSecureString_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Overwrite", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_Overwrite_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_Overwrite_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "KeySize", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_KeySize_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_KeySize_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_ContinueOnError_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "PublicKeyFile", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_PublicKeyFile_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_PublicKeyFile_Description", - "IsRequired": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - }, - { - "Name": "PrivateKeyFile", - "DisplayNameKey": "Activity_PgpGenerateKeys_Property_PrivateKeyFile_Name", - "TooltipKey": "Activity_PgpGenerateKeys_Property_PrivateKeyFile_Description", - "IsRequired": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.PgpSignFile", @@ -1308,125 +79,7 @@ "DescriptionKey": "Activity_PgpSignFile_Description", "IconKey": "PGP_sign_file.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.PgpSignFileViewModel", - "Properties": [ - { - "Name": "InputFilePath", - "DisplayNameKey": "Activity_PgpSignFile_Property_InputFilePath_Name", - "TooltipKey": "Activity_PgpSignFile_Property_InputFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFile", - "DisplayNameKey": "Activity_PgpSignFile_Property_InputFile_Name", - "TooltipKey": "Activity_PgpSignFile_Property_InputFile_Description", - "IsPrincipal": true, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_PgpSignFile_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_PgpSignFile_Property_PrivateKeyFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PrivateKeyFile", - "DisplayNameKey": "Activity_PgpSignFile_Property_PrivateKeyFile_Name", - "TooltipKey": "Activity_PgpSignFile_Property_PrivateKeyFile_Description", - "IsPrincipal": true, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_PgpSignFile_Property_Passphrase_Name", - "TooltipKey": "Activity_PgpSignFile_Property_Passphrase_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_PgpSignFile_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_PgpSignFile_Property_PassphraseSecureString_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "OutputFilePath", - "DisplayNameKey": "Activity_PgpSignFile_Property_OutputFilePath_Name", - "TooltipKey": "Activity_PgpSignFile_Property_OutputFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Overwrite", - "DisplayNameKey": "Activity_PgpSignFile_Property_Overwrite_Name", - "TooltipKey": "Activity_PgpSignFile_Property_Overwrite_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_PgpSignFile_Property_ContinueOnError_Name", - "TooltipKey": "Activity_PgpSignFile_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "SignedFile", - "DisplayNameKey": "Activity_PgpSignFile_Property_SignedFile_Name", - "TooltipKey": "Activity_PgpSignFile_Property_SignedFile_Description", - "IsRequired": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.PgpClearSignFile", @@ -1436,125 +89,7 @@ "DescriptionKey": "Activity_PgpClearSignFile_Description", "IconKey": "PGP_clear_sign_file.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.PgpClearSignFileViewModel", - "Properties": [ - { - "Name": "InputFilePath", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_InputFilePath_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_InputFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFile", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_InputFile_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_InputFile_Description", - "IsPrincipal": true, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PrivateKeyFilePath", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_PrivateKeyFilePath_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_PrivateKeyFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PrivateKeyFile", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_PrivateKeyFile_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_PrivateKeyFile_Description", - "IsPrincipal": true, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "Passphrase", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_Passphrase_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_Passphrase_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PassphraseSecureString", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_PassphraseSecureString_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_PassphraseSecureString_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "OutputFilePath", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_OutputFilePath_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_OutputFilePath_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Overwrite", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_Overwrite_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_Overwrite_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_ContinueOnError_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "ClearSignedFile", - "DisplayNameKey": "Activity_PgpClearSignFile_Property_ClearSignedFile_Name", - "TooltipKey": "Activity_PgpClearSignFile_Property_ClearSignedFile_Description", - "IsRequired": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] }, { "FullName": "UiPath.Cryptography.Activities.PgpVerify", @@ -1564,89 +99,7 @@ "DescriptionKey": "Activity_PgpVerify_Description", "IconKey": "PGP_verify.svg", "ViewModelType": "UiPath.Cryptography.Activities.NetCore.ViewModels.PgpVerifyViewModel", - "Properties": [ - { - "Name": "Mode", - "DisplayNameKey": "Activity_PgpVerify_Property_Mode_Name", - "TooltipKey": "Activity_PgpVerify_Property_Mode_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFilePath", - "DisplayNameKey": "Activity_PgpVerify_Property_InputFilePath_Name", - "TooltipKey": "Activity_PgpVerify_Property_InputFilePath_Description", - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "InputFile", - "DisplayNameKey": "Activity_PgpVerify_Property_InputFile_Name", - "TooltipKey": "Activity_PgpVerify_Property_InputFile_Description", - "IsPrincipal": true, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PublicKeyFilePath", - "DisplayNameKey": "Activity_PgpVerify_Property_PublicKeyFilePath_Name", - "TooltipKey": "Activity_PgpVerify_Property_PublicKeyFilePath_Description", - "IsRequired": true, - "IsPrincipal": true, - "IsVisible": true, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "PublicKeyFile", - "DisplayNameKey": "Activity_PgpVerify_Property_PublicKeyFile_Name", - "TooltipKey": "Activity_PgpVerify_Property_PublicKeyFile_Description", - "IsPrincipal": true, - "IsVisible": false, - "Category": { - "Name": "Input", - "DisplayNameKey": "Input" - } - }, - { - "Name": "ContinueOnError", - "DisplayNameKey": "Activity_PgpVerify_Property_ContinueOnError_Name", - "TooltipKey": "Activity_PgpVerify_Property_ContinueOnError_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Options", - "DisplayNameKey": "Category_Options_Name" - } - }, - { - "Name": "Result", - "DisplayNameKey": "Activity_PgpVerify_Property_Result_Name", - "TooltipKey": "Activity_PgpVerify_Property_Result_Description", - "IsRequired": false, - "IsPrincipal": false, - "IsVisible": true, - "Category": { - "Name": "Output", - "DisplayNameKey": "Output" - } - } - ] + "Properties": [] } ], "DefaultActivityColor": "#526069",