91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++解壓與文件加密密鑰存儲

發布時間:2024-10-30 17:46:47 來源:億速云 閱讀:79 作者:小樊 欄目:編程語言

在C++中,可以使用標準庫中的<fstream><iostream>頭文件來處理文件的讀取和寫入

  1. 首先,創建一個名為encrypt.cpp的文件,然后將以下代碼粘貼到文件中:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>

std::string encrypt(const std::string& input, const std::string& key) {
    std::string output;
    for (size_t i = 0; i < input.size(); ++i) {
        output += static_cast<char>(input[i] + key[i % key.size()]);
    }
    return output;
}

void encryptFile(const std::string& inputFile, const std::string& outputFile, const std::string& key) {
    std::ifstream in(inputFile, std::ios::binary);
    if (!in) {
        std::cerr << "Error opening input file: " << inputFile << std::endl;
        return;
    }

    std::ofstream out(outputFile, std::ios::binary);
    if (!out) {
        std::cerr << "Error opening output file: " << outputFile << std::endl;
        return;
    }

    std::string line;
    while (std::getline(in, line)) {
        std::string encryptedLine = encrypt(line, key);
        out << encryptedLine << std::endl;
    }

    in.close();
    out.close();
}

int main() {
    std::string inputFile = "input.txt";
    std::string outputFile = "output.txt";
    std::string key = "secret";

    encryptFile(inputFile, outputFile, key);

    std::cout << "File encrypted successfully!" << std::endl;

    return 0;
}
  1. 接下來,創建一個名為decrypt.cpp的文件,然后將以下代碼粘貼到文件中:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>

std::string decrypt(const std::string& input, const std::string& key) {
    std::string output;
    for (size_t i = 0; i < input.size(); ++i) {
        output += static_cast<char>(input[i] - key[i % key.size()]);
    }
    return output;
}

void decryptFile(const std::string& inputFile, const std::string& outputFile, const std::string& key) {
    std::ifstream in(inputFile, std::ios::binary);
    if (!in) {
        std::cerr << "Error opening input file: " << inputFile << std::endl;
        return;
    }

    std::ofstream out(outputFile, std::ios::binary);
    if (!out) {
        std::cerr << "Error opening output file: " << outputFile << std::endl;
        return;
    }

    std::string line;
    while (std::getline(in, line)) {
        std::string decryptedLine = decrypt(line, key);
        out << decryptedLine << std::endl;
    }

    in.close();
    out.close();
}

int main() {
    std::string inputFile = "output.txt";
    std::string outputFile = "decrypted.txt";
    std::string key = "secret";

    decryptFile(inputFile, outputFile, key);

    std::cout << "File decrypted successfully!" << std::endl;

    return 0;
}
  1. 編譯并運行這兩個程序。首先,使用以下命令編譯encrypt.cppdecrypt.cpp
g++ encrypt.cpp -o encrypt
g++ decrypt.cpp -o decrypt
  1. 然后,運行這兩個程序。首先運行encrypt程序,將一個名為input.txt的文件加密為output.txt
./encrypt
  1. 最后,運行decrypt程序,將加密后的output.txt文件解密為decrypted.txt
./decrypt

這樣,你就可以使用C++輕松地實現文件的加密和解密功能了。請注意,這里的示例僅用于演示目的,實際應用中可能需要考慮更多的安全因素。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

邹平县| 香格里拉县| 习水县| 朝阳县| 怀化市| 清镇市| 大理市| 富川| 玉屏| 道孚县| 上栗县| 濮阳市| 云和县| 凯里市| 上虞市| 于田县| 宝山区| 迭部县| 徐汇区| 翁源县| 马关县| 通河县| 太康县| 兴宁市| 麻江县| 丰都县| 昌乐县| 天台县| 盱眙县| 隆尧县| 延长县| 育儿| 油尖旺区| 罗甸县| 大庆市| 冀州市| 石屏县| 常山县| 宜宾市| 天气| 河源市|