亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c++文件加密解密怎么實現

c++
小億
161
2023-11-08 17:17:17
欄目: 編程語言

在C++中,可以使用一些加密算法來實現文件加密和解密。

一種常見的加密算法是AES (Advanced Encryption Standard)。以下是一個使用AES算法對文件進行加密和解密的示例代碼:

#include <iostream>
#include <fstream>
#include <string>
#include <openssl/aes.h>

const int AES_KEY_LENGTH = 128; // 使用128位的AES加密

std::string encryptFile(const std::string& inputFile, const std::string& outputFile, const std::string& key) {
    std::ifstream fin(inputFile, std::ios::binary);
    std::ofstream fout(outputFile, std::ios::binary);

    // 設置AES加密密鑰
    AES_KEY aesKey;
    AES_set_encrypt_key((const unsigned char*)key.c_str(), AES_KEY_LENGTH, &aesKey);

    // 加密文件
    unsigned char inBuffer[AES_BLOCK_SIZE];
    unsigned char outBuffer[AES_BLOCK_SIZE];

    while (fin.read((char*)inBuffer, AES_BLOCK_SIZE)) {
        AES_encrypt(inBuffer, outBuffer, &aesKey);
        fout.write((char*)outBuffer, AES_BLOCK_SIZE);
    }

    fin.close();
    fout.close();

    return outputFile;
}

std::string decryptFile(const std::string& inputFile, const std::string& outputFile, const std::string& key) {
    std::ifstream fin(inputFile, std::ios::binary);
    std::ofstream fout(outputFile, std::ios::binary);

    // 設置AES解密密鑰
    AES_KEY aesKey;
    AES_set_decrypt_key((const unsigned char*)key.c_str(), AES_KEY_LENGTH, &aesKey);

    // 解密文件
    unsigned char inBuffer[AES_BLOCK_SIZE];
    unsigned char outBuffer[AES_BLOCK_SIZE];

    while (fin.read((char*)inBuffer, AES_BLOCK_SIZE)) {
        AES_decrypt(inBuffer, outBuffer, &aesKey);
        fout.write((char*)outBuffer, AES_BLOCK_SIZE);
    }

    fin.close();
    fout.close();

    return outputFile;
}

int main() {
    std::string inputFile = "input.txt";
    std::string encryptedFile = "encrypted.txt";
    std::string decryptedFile = "decrypted.txt";
    std::string key = "mykey1234567890"; // 密鑰

    encryptFile(inputFile, encryptedFile, key);
    decryptFile(encryptedFile, decryptedFile, key);

    return 0;
}

上述代碼使用OpenSSL庫中的AES函數。encryptFile函數接收輸入文件路徑、輸出文件路徑和密鑰作為參數,將輸入文件內容加密后寫入輸出文件。decryptFile函數接收加密后的文件路徑、解密后的文件路徑和密鑰作為參數,將加密文件內容解密后寫入解密后的文件。

請注意,這只是一個簡單的示例代碼,僅用于演示AES加密和解密。在實際應用中,需要考慮更多的安全性問題,如密鑰的生成和存儲、加密模式的選擇等。

0
开鲁县| 屏南县| 黎平县| 黔西县| 泰来县| 庆城县| 盐边县| 即墨市| 阿克陶县| 邹平县| 周口市| 昔阳县| 类乌齐县| 怀远县| 蓬安县| 鄂托克旗| 忻城县| 沙河市| 依安县| 横峰县| 普安县| 丹寨县| 广安市| 永胜县| 马公市| 阿拉善左旗| 明星| 芒康县| 崇信县| 石屏县| 鹤山市| 百色市| 玉山县| 关岭| 南澳县| 星子县| 鄂伦春自治旗| 富阳市| 洛川县| 新安县| 镇宁|