当前位置:   article > 正文

关于C++的简单文件加密解密_c++ 加密和解密函数

c++ 加密和解密函数

1.首先定义一个加密的口令
2.读取文件的内容,将读取到的每个字符循环遍历加上定义口令的ASCII值
3.再将加密后的文件内容覆盖回原本的文件

直接看代码

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<fstream>
#include<iostream>
#include <cassert>
#include <list>

using namespace std;

void encfile(char *in_filename,char *pwd);
void decryptfile(char* in_filename,char *pwd);
void getFileContent(string str);

string content;
string *content_array = new string[2048];

struct generateInfo {
   
    string password;
    string checked;
    string username;
    string company;
};

int main(int argc,char *argv[]) {
    
    char in_filename[30] = "e://jiami.txt";        
    char pwd[8] 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/990901
推荐阅读
相关标签
  

闽ICP备14008679号