1

私は最近、学校のプロジェクト用に次のコードを書きました。私の目的は、基本的な暗号化プログラムを作成することです。現在、このプログラムでファイルを暗号化するには、ファイル名を認識し、ファイル拡張子を含めて手動でコンソールに入力する必要があります。プログラムの使いやすさを向上させるために、ユーザーが暗号化するファイルを選択できるように、Windows ファイル エクスプローラー ウィンドウを開く機能を実装したいと考えました。インターネットで多くの検索を行った後、これをコードに実装する方法を見つけることができませんでした。私の質問は、この機能が C++ ライブラリに存在するかどうかです。もしそうなら、どうすればコードに実装できますか。

#include    <iostream>  
#include    <fstream>       
#include    <stdio.h>      
#include    <math.h>
using namespace std;

#define     ENCRYPTION_FORMULA      (int) Byte * 25  
#define     DECRYPTION_FORMULA      (int) Byte / 25 

int Encrypt (char * FILENAME, char * NEW_FILENAME)
{
std::ifstream inFile;   
std::ofstream outFile;                 
char Byte;          
inFile.open(FILENAME, ios::in | ios::binary);       
outFile.open(NEW_FILENAME, ios::out | ios::binary); 

    while(!inFile.eof())
{
    char NewByte;
    Byte = inFile.get();
    if (inFile.fail())
        return 0;
    NewByte = ENCRYPTION_FORMULA;
    outFile.put(NewByte);
}

inFile.close();     
outFile.close();    

return 1; 
}


int Decrypt (char * FILENAME, char * NEW_FILENAME)
{
std::ifstream inFile;
std::ofstream outFile;
char Byte;
inFile.open(FILENAME, ios::in | ios::binary);
outFile.open(NEW_FILENAME, ios::out | ios::binary);

while(!inFile.eof())
{
    char NewByte;
    Byte = inFile.get();
    if (inFile.fail())
        return 0;
    NewByte = DECRYPTION_FORMULA;
    outFile.put(NewByte);
}

inFile.close();
outFile.close();

return 1;
}


    int main()
    {

char EncFile[200];      
char NewEncFile[200];   
char DecFile[200];      
char NewDecFile[200];   
int Choice;         
cout << "NOTE: You must encrypt the file with the same file extension!"<<endl;
cout << "Enter 1 to Encrypt / 2 to Decrypt"<<endl;
cin >> Choice;  

switch(Choice)
{
case 1:
    cout << "Enter the current Filename:    ";
    cin >> EncFile; 
    cout << "Enter the new Filename:    ";
    cin >> NewEncFile;  
    Encrypt(EncFile, NewEncFile);   
    break;

case 2: 
    cout << "Enter the current Filename:    ";
    cin >> DecFile;
    cout << "Enter the new Filename:    ";
    cin >> NewDecFile;
    Decrypt(DecFile, NewDecFile);   
    break;
}


return 0;   //Exit!

}

4

1 に答える 1