Thread: Help with decoding program...

  1. #16
    Registered User Cpro's Avatar
    Join Date
    Oct 2006
    Posts
    149
    The following works for me ("number" is the key value and is set to 2):
    Code:
    #include <iostream>
    #include <vector>
    #include <cstdlib>
    #include <string>
    #include <fstream>
    
    using namespace std; 
    
    vector <char> read_file(string file_name); 
    string decode(vector <char> encrypted, int key); 
    void display(string decrypted, int key); 
    
    int main () 
    {
        int number = 2;  //Key
        vector <char> encrypted = read_file("intercepted.txt"); 
        string decrypted = decode(encrypted, number); 
        display(decrypted, number); 
        
       cin.get();
        
        return 0; 
    }
    //-------------------------------------------- 
    vector <char> read_file(string file_name) 
    {
           ifstream input_file; 
           input_file.open(file_name.c_str()); 
           if (input_file.fail()) 
           {
              cout << "Failed to open file!" << endl; 
              exit(1); 
           }
           vector <char> encrypted; 
           char next(0);
           while(input_file >> next)
    	   {
               encrypted.push_back(next);
    		   cout << next;
           }
           cout << endl;
           input_file.close();
         
           return encrypted; 
    } 
    //-------------------------------------------
    string decode(vector <char> encrypted, int key)
    {
    	//Creates new vector
    	string decrypted = "";
    	
        for (int i = 0; i < encrypted.size(); i++)
        {		
        	if (int(encrypted[i]) + key > 126)
    		{
    			decrypted += char(((int(encrypted[i]) + key) - 127) + 32);
    		}
    		else
    		{
                decrypted += char(int(encrypted[i]) + key);
    		}
        }
    	
    	return decrypted;
    }
    
    //------------------------------------------
    void display(string decrypted, int key)
    {
         cout << "Key: " << key << " Text: " << decrypted << endl; 
    }
    So, I still don't understand the need for the key loop, unless your objective is to find the key that works. But, then you would have to test the validity of the returned string each time...
    But, if you wanted to, you would do it kind of like you had it before:
    Code:
    string decode(vector <char> encrypted, int key)
    {
    	//Creates new vector
    	string decrypted = "";
    
    	for(key = 0; key < 100; key++)
    	{
    		for (int i = 0; i < encrypted.size(); i++)
    		{		
        		if (int(encrypted[i]) + key > 126)
    			{
    				decrypted += char(((int(encrypted[i]) + key) - 127) + 32);
    			}
    			else
    			{
    				decrypted += char(int(encrypted[i]) + key);
    			}
    		}
                    //break from loop when valid string is found
    	}
    	
    	return decrypted;
    }
    Last edited by Cpro; 04-09-2009 at 07:51 PM.
    IDE - Visual Studio 2005
    Windows XP Pro

  2. #17
    Registered User
    Join Date
    Apr 2009
    Location
    ...creepy
    Posts
    75
    ok, so now since all of the values are read out from key = 0 to key = 100. is there a way to individually ask the user if each decrypted string at key = x is the one they want. So, what I'm asking is if there is a way to output decrypted after each reiteration of key and ask the user if it is correct. if yes, it exits the function and if no, it continues that loop while asking the user after each iteration of key. please help asap! i appreciate the help! thanks

  3. #18
    Registered User Cpro's Avatar
    Join Date
    Oct 2006
    Posts
    149
    Just ask the user after the string is filled, right before the next key iteration (where my comment is). If it is the correct string, break from the for loop. Then the return statement executes, which will be the correct string.
    IDE - Visual Studio 2005
    Windows XP Pro

  4. #19
    Registered User
    Join Date
    Apr 2009
    Location
    ...creepy
    Posts
    75
    got it. the program works the way i want it to. thanks for all the help everyone!! most appreciated!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. program quits unexpected
    By skelesp in forum C Programming
    Replies: 34
    Last Post: 12-10-2008, 09:10 AM
  2. Issue with program that's calling a function and has a loop
    By tigerfansince84 in forum C++ Programming
    Replies: 9
    Last Post: 11-12-2008, 01:38 PM
  3. Need help with a program, theres something in it for you
    By engstudent363 in forum C Programming
    Replies: 1
    Last Post: 02-29-2008, 01:41 PM
  4. Replies: 4
    Last Post: 02-21-2008, 10:39 AM
  5. My program, anyhelp
    By @licomb in forum C Programming
    Replies: 14
    Last Post: 08-14-2001, 10:04 PM