c++文件加密解密的方法是什么


在C++中进行文件加密和解密通常采用对称加密算法,其中最常用的是AES(Advanced Encryption Standard)算法。以下是一个简单的C++代码示例,演示如何使用AES算法进行文件加密和解密:

#include <iostream>#include <fstream>#include <openssl/aes.h>#include <openssl/rand.h>void encryptFile(const std::string& inputFile, const std::string& outputFile, const std::string& key) {AES_KEY aesKey;AES_set_encrypt_key((unsigned char*)key.c_str(), 128, &aesKey);std::ifstream in(inputFile, std::ios::binary);std::ofstream out(outputFile, std::ios::binary);unsigned char iv[AES_BLOCK_SIZE];RAND_bytes(iv, AES_BLOCK_SIZE);out.write(reinterpret_cast<const char*>(iv), AES_BLOCK_SIZE);unsigned char inBuffer[AES_BLOCK_SIZE];unsigned char outBuffer[AES_BLOCK_SIZE];int numBytesRead = 0;while (in.read(reinterpret_cast<char*>(inBuffer), AES_BLOCK_SIZE)) {AES_cbc_encrypt(inBuffer, outBuffer, AES_BLOCK_SIZE, &aesKey, iv, AES_ENCRYPT);out.write(reinterpret_cast<char*>(outBuffer), AES_BLOCK_SIZE);numBytesRead += AES_BLOCK_SIZE;}in.close();out.close();}void decryptFile(const std::string& inputFile, const std::string& outputFile, const std::string& key) {AES_KEY aesKey;AES_set_decrypt_key((unsigned char*)key.c_str(), 128, &aesKey);std::ifstream in(inputFile, std::ios::binary);std::ofstream out(outputFile, std::ios::binary);unsigned char iv[AES_BLOCK_SIZE];in.read(reinterpret_cast<char*>(iv), AES_BLOCK_SIZE);unsigned char inBuffer[AES_BLOCK_SIZE];unsigned char outBuffer[AES_BLOCK_SIZE];int numBytesRead = 0;while (in.read(reinterpret_cast<char*>(inBuffer), AES_BLOCK_SIZE)) {AES_cbc_encrypt(inBuffer, outBuffer, AES_BLOCK_SIZE, &aesKey, iv, AES_DECRYPT);out.write(reinterpret_cast<char*>(outBuffer), AES_BLOCK_SIZE);numBytesRead += AES_BLOCK_SIZE;}in.close();out.close();}int main() {std::string inputFile = "plaintext.txt";std::string encryptedFile = "encrypted.bin";std::string decryptedFile = "decrypted.txt";std::string key = "mysecretkey";encryptFile(inputFile, encryptedFile, key);decryptFile(encryptedFile, decryptedFile, key);return 0;}

在上面的示例中,encryptFile函数用于加密文件,decryptFile函数用于解密文件。需要注意的是,需要安装OpenSSL库,并在编译时链接对应的库文件。此外,文件加密和解密的过程中需要使用相同的密钥。


上一篇:Django会话指的是什么意思

下一篇:c#获取时间的方法有哪些


c++
Copyright © 2002-2019 测速网 https://www.inhv.cn/ 皖ICP备2023010105号 城市 地区 街道
温馨提示:部分文章图片数据来源与网络,仅供参考!版权归原作者所有,如有侵权请联系删除!
热门搜索