Example #1
0
        private static void FileDecrypt()
        {
            Console.WriteLine("Введите приватную экспоненту");
            var d = new BigInt(Console.ReadLine());

            Console.WriteLine("Введите модуль");
            var n = new BigInt(Console.ReadLine());

            Console.WriteLine("Введите имя файла");
            FileCryptor.Decrypt(Console.ReadLine(), d, n);
        }