Пример #1
0
        private DecryptionOutput GetSelectedValuesFromGUIDecryption()
        {
            //enter values from input controls to EncryptionInput object
            DecryptionInput di = new DecryptionInput(InputFileTextBoxDecryption.Text,
                                                     OutputFileTextBoxDecryption.Text,
                                                     (User)RecipentsListBoxDecryption.SelectedItem);

            DecryptionOutput decryptionOutput =
                InputHandlers.ParseDecryptionValues(di);

            return(decryptionOutput);
        }