c
crak20April 3, 2017, 9 a.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, 9:14 a.m.

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

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

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

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

      c
      • April 3, 2017, 6:35 p.m.

      Да.

        c
        • April 4, 2017, 10:06 a.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, 10:10 a.m.

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

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

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

              Comments

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

              C ++ - Test 004. Pointers, Arrays and Loops

              • Result:50points,
              • Rating points-4
              m

              C ++ - Test 004. Pointers, Arrays and Loops

              • Result:80points,
              • Rating points4
              m

              C ++ - Test 004. Pointers, Arrays and Loops

              • Result:20points,
              • Rating points-10
              Last comments
              i
              innorwallNov. 11, 2024, 10:12 p.m.
              Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
              i
              innorwallNov. 11, 2024, 6:23 p.m.
              QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
              i
              innorwallNov. 11, 2024, 3:50 p.m.
              Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
              i
              innorwallNov. 11, 2024, 2:19 p.m.
              Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
              i
              innorwallNov. 11, 2024, 1:55 p.m.
              PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
              Now discuss on the forum
              i
              innorwallNov. 11, 2024, 8:56 p.m.
              добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
              i
              innorwallNov. 11, 2024, 10:55 a.m.
              Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
              9
              9AnonimOct. 25, 2024, 9:10 a.m.
              Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

              Follow us in social networks