c
crak20April 3, 2017, 7 p.m.

Перебор

Есть строка типа char[1000], слово(а) в ней произвольные. Допустим: products Нужно чтобы эта строка считалась как число 99999999 = products 99999916 = produclp т.е. s-3 по алфавиту будет 'p', t-8 будет 'l'; учесть такой тип 00099916; Использовать алфавит ascii. Не соображу как делать счетчик сразу с 2+ буквами, а численные переменные не подходят ибо слишком короткие. Если есть предложения другого метода перебора, я вас читаю =).

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

6
Evgenii Legotckoi
  • April 3, 2017, 7:14 p.m.

Интересная у вас задачка. А вы уже что-нибудь рабочее реализовали в коде? Чтобы мне было от чего оттолкнуться? Если есть какой-нибудь код, то показывайте. Чтобы был виден ход ваших мыслей.

P/S/ Наберётесь опыта, можете тоже заметки/статьи на сайт писать. Вас тоже читать будут =)

    Evgenii Legotckoi
    • April 3, 2017, 10:39 p.m.

    Кстати, что именно вы подразумевали под 2+ буквами? Вычитать из счётчика сразу 24 или 124, например?

      c
      • April 4, 2017, 4:35 a.m.

      Да.

        c
        • April 4, 2017, 8:06 p.m.
        #include <iostream>
        #include <time.h>
        #include <cstring>
        #include <fstream>
        #include <conio.h>
        #include <stdio.h>
        #include <string.h>
        using namespace std;
        
        
        int main()
        {
        	fstream a;
        	char c[256];
        	char x[9];
        	char z[9];
        	char Bkey[9];
        	int ikey = 999999999;
        	int j = 0; // сдвиг ключа
        	bool flag = 0; // выхода из двойного цикла
        
        	while (true)
        	{
        		system("cls");
        		cout << "1) Key: " << x << endl
        			<< "2) File" << endl
        			<< "3) Encrypt" << endl
        			<< "4) Decrypt" << endl
        			<< "5) Exit" << endl
        			<< "6) Brute force" << endl;
        		switch (_getch())
        		{
        		case int('1') :
        		{
        			cout << "Enter the Key: ";
        			cin >> x; system("PAUSE"); break; // Ключ
        		}
        		case int('2') :
        		{
        			cout << "Text: ";
        			a.open("C:/Users/xpens/Desktop/w1.txt", ios::in); // файл
        			while (!a.eof())
        			{
        				a.getline(c, 255, '\n');
        				cout << c << '\n';
        			}
        			a.close();
        			system("PAUSE");
        			break;
        		}
        		case int('3') :
        		{
        			cout << "Encrypted Text: ";
        			a.open("C:/Users/xpens/Desktop/w1.txt", ios::out);
        			for (int i = 0; i < strlen(c); i++) // шифруем
        			{
        				if (j == strlen(x)) j = 0;
        				c[i] = c[i] + (x[j] - '0');
        				a << c[i];
        				cout << c[i];
        				j++;
        			}
        			a.close();
        			cout << endl;
        			j = 0;
        			system("PAUSE");
        			break;
        		}
        		case int('4') :
        		{
        			cout << "Decryption Key: ";
        			cin >> z; // Ключ дешифровки
        			if (strlen(z) == strlen(x))
        			{
        				for (int i = 0; i < strlen(z); i++)
        				{
        					if (z[i] != x[i])
        					{
        						cout << "Wrong Key!";
        						flag = 1;
        						system("PAUSE");
        						break;
        					}
        				}
        			}
        			else
        			{
        				cout << "Wrong Key!"; break;
        			}
        			if (flag == 0)
        			{
        				cout << "Decrypted Text: ";
        				a.open("C:/Users/xpens/Desktop/w1.txt", ios::out);
        				for (int i = 0; i < strlen(c); i++) // дешифруем
        				{
        					if (j == strlen(z)) j = 0;
        					c[i] = c[i] - (z[j] - '0');
        					a << c[i];
        					cout << c[i];
        					j++;
        
        				}
        				a.close();
        				j = 0;
        				system("PAUSE");
        			}
        			flag = 0;
        			break;
        		}
        		case int('5') :
        		{
        			return 0;
        		}
        		case int('6') :
        		{
        			cout << "Brute: ";
        			a.open("C:/Users/xpens/Desktop/w1.txt", ios::in); // файл
        			while (!a.eof())
        			{
        				a.getline(c, 255, '\n');
        			}
        
        			for (int y = ikey; y < ikey-1000; y--)
        			{
        				for (int i = 0; i <= 9; i++)
        				{
        					Bkey[i] = (y % 10) + '0';
        				}
        
        				for (int i = 0; i < strlen(c); i++) // дешифруем
        				{
        					if (j == 4) j = 0;
        					c[i] = c[i] - (Bkey[j] - '0');
        					cout << c[i];
        					j++;
        				}
        				cout << endl;
        			}
        			j = 0;
        			a.close();
        			system("PAUSE");
        			break;
        		}
        		}
        
        	}
        	system("PAUSE");
        	return 0;
        }
          c
          • April 4, 2017, 8:10 p.m.

          6 пункт не работает не хочет брутить если ключ длиной в 3 символа.

            Evgenii Legotckoi
            • April 4, 2017, 11:35 p.m.

            Что-то я не заметил, чтобы он и при длине ключа в 1 символ что-нибудь брутфорсил...

              Comments

              Only authorized users can post comments.
              Please, Log in or Sign up
              МВ

              Qt - Test 001. Signals and slots

              • Result:68points,
              • Rating points-1
              ЛС

              C++ - Test 001. The first program and data types

              • Result:53points,
              • Rating points-4
              АА

              C++ - Test 001. The first program and data types

              • Result:60points,
              • Rating points-1
              Last comments
              ИМ
              Игорь МаксимовOct. 5, 2024, 5:51 p.m.
              Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
              d
              dblas5July 5, 2024, 9:02 p.m.
              QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
              k
              kmssrFeb. 9, 2024, 5:43 a.m.
              Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
              Qt WinAPI - Lesson 007. Working with ICMP Ping in Qt Без строки #include <QRegularExpressionValidator> в заголовочном файле не работает валидатор.
              EVA
              EVADec. 25, 2023, 9:30 p.m.
              Boost - static linking in CMake project under Windows Ошибка LNK1104 часто возникает, когда компоновщик не может найти или открыть файл библиотеки. В вашем случае, это файл libboost_locale-vc142-mt-gd-x64-1_74.lib из библиотеки Boost для C+…
              Now discuss on the forum
              MM
              MichaelsusixQY MichaelsusixQYOct. 8, 2024, 3:57 a.m.
              добавить qlineseries в функции Creating a healthier and healthier atmosphere is crucial for factories and factories. High-pressure washing can help remove contaminants, dust, and impurities that gather on floors, making sure …
              JW
              Jhon WickOct. 2, 2024, 1:52 a.m.
              Indian Food Restaurant In Columbus OH| Layla’s Kitchen Indian Restaurant If you're looking for a truly authentic https://www.laylaskitchenrestaurantohio.com/ , Layla’s Kitchen Indian Restaurant is your go-to destination. Located at 6152 Cleveland Ave, Colu…
              КГ
              Кирилл ГусаревSept. 27, 2024, 7:09 p.m.
              Не запускается программа на Qt: точка входа в процедуру не найдена в библиотеке DLL Написал программу на C++ Qt в Qt Creator, сбилдил Release с помощью MinGW 64-bit, бинарнику напихал dll-ки с помощью windeployqt.exe. При попытке запуска моей сбилженной программы выдаёт три оши…
              F
              FynjyJuly 22, 2024, 2:15 p.m.
              при создании qml проекта Kits есть но недоступны для выбора Поставил Qt Creator 11.0.2. Qt 6.4.3 При создании проекта Qml не могу выбрать Kits, они все недоступны, хотя настроены и при создании обычного Qt Widget приложения их можно выбрать. В чем может …

              Follow us in social networks