赞
踩
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]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。