私は現在C++の勉強中で、VisualStudio2019で以下に示すファイルの暗号化プログラムを参考サイトをマネして作成しました。
暗号化ライブラリCrypt++を使用しています。
参考文献
#include<iostream> #include<fstream> #include<string> #include<cstdlib> #include <iostream> #include <aes.h> #include <dh.h> #include <modes.h> #include <osrng.h> using namespace std; // 鍵データ初期化 void InitKey(byte* key, size_t size) { for (size_t i = 0; i < size; ++i) { key[i] = rand(); } } int main() { // 共通鍵・IV byte key[CryptoPP::AES::DEFAULT_KEYLENGTH]; byte iv[CryptoPP::AES::BLOCKSIZE]; // 共通鍵とIVを適当な値で初期化 InitKey(key, sizeof(key)); InitKey(iv, sizeof(iv)); //ファイルの選択とオープン fstream file1; string str, str2, str3; cout << "ファイル名を入力してください" << endl; cin >> str; file1.open(str); if (!file1.is_open()) { return EXIT_FAILURE; } // file1 << "こんにつはんはん\ndacchin"<<endl; file1.close(); file1.open(str, ios::binary | ios::in); if (!file1.is_open()) { return EXIT_FAILURE; } while (!file1.eof()) { file1 >> str2; str3 += '\n'; str3 += str2; } //for (int i = 0; i < 5; i++) str3.pop_back(); file1.close(); cout << str3 << endl; string plainText = str3; // string plainText = "暗号化される前の平文="+str3; cout << "Plain Text : " << plainText << endl; // 暗号化オブジェクトの作成 //CryptoPP::CTR_Mode<cryptoPP::AES>::Encryption enc; CryptoPP::CTR_Mode<CryptoPP::AES>::Encryption enc; enc.SetKeyWithIV(key, sizeof(key), iv); // 暗号化のための変換フィルタの作成 string encText; CryptoPP::StreamTransformationFilter encFilter(enc, new CryptoPP::StringSink(encText)); // 暗号化 encFilter.Put(reinterpret_cast<const byte*>(plainText.c_str()), plainText.size()); encFilter.MessageEnd(); cout << "Encrypted Text : " << encText << std::endl; //暗号化テキストをファイルに入れる。 file1.open(str); if (!file1.is_open()) { return EXIT_FAILURE; } file1 << encText << endl; file1.close(); // 復号化オブジェクトの作成 CryptoPP::CTR_Mode<CryptoPP::AES>::Decryption dec; dec.SetKeyWithIV(key, sizeof(key), iv); // 復号化のための変換フィルタの作成 std::string decText; CryptoPP::StreamTransformationFilter decFilter(dec, new CryptoPP::StringSink(decText)); decFilter.Put(reinterpret_cast<const byte*>(encText.c_str()), encText.size()); decFilter.MessageEnd(); cout << "Decrypted Text : " << decText << std::endl; //復号化テキストをファイルに入れる。 file1.open(str); if (!file1.is_open()) { return EXIT_FAILURE; } file1 << decText << endl; file1.close(); return 0; }
VisualStudioではうまく動作するのですが、
これをコマンドプロンプトウィンドウ単体で動かしたいと考えています。
手順
1。メモ帳で上記と同じプログラム「a.cpp」作成
2.「a.exe」ファイル作成
3.実行
わからないこと
Crypt++ライブラリが使えないというようなエラーが出ている?と思うのですが
コマンドプロンプト単体でライブラリを使う方法はあるのでしょうか。
GCCでコンパイルしたいけど、できないという質問でしょうか?
それとも実行したいだけなら、Visual Studio が出力した exe ファイルがあるディレクトリに cd で移動して、a.exe (exeファイルの名前) をコマンドプロンプトに打ち込めば実行できませんか?