下面程序用异或 *** 作对文件进行加密和解密
/******************设计思路******************/
//根据用户输入的加密/机密密码,
//每次都拿原文件和密码等长度的一个字符串和密码
//对应元素异或进行加密/解密
//另外因为是用异或方法,所以加密和解密就是同一个程序
//即按照同样的加密即是对文件的解密
#include
#include
#include
#include
#include
charfilename[256]//原文件
charpassword[256]//加密/解密密码
constcharfilenametemp[]="temp15435255435325432543.temp"//加密/解密中间文件
voidinputpass(char*pass)//密码输入以"******"显示
voidmain(){
FILE*fp//加密/解密的文件
FILE*fptemp//加密/解密过程临时文件
intpwdlen//密码长度
inti=0//计数器
charch=0//读入的字符
printf("请输入要加密/解密的文件名(全路径名):\n")
gets(filename)
if((fp=fopen(filename,"rb"))==NULL){
printf("找不到文件%s\n",filename)
exit(1)
}//if
printf("请输入要加密/解密的密码:\n")
inputpass(password)
pwdlen=strlen(password)
if(pwdlen==0){
printf("密码不能为空,加密/解密失败\n")
exit(1)
}//if
fptemp=fopen(filenametemp,"wb")//打开中间文件
while(1){
ch=fgetc(fp)//从原文件读入一个字符
if(feof(fp)){//已经读到文件尾
break//退出循环
}
ch^=password[i++]//对原字符和密码进行异或 *** 作
fputc(ch,fptemp)//将异或结果写入中间文件
if(i==pwdlen){//使得原文件每和密码长度相同的固定长度异或加密
i=0
}
}//while
fclose(fp)//关闭打开原文件
fclose(fptemp)//关闭打开中间文件
remove(filename)//删除原文件
rename(filenametemp,filename)//将中间文件重命名为原文件
printf("加密/解密成功\n")//至此加密/解密成功
}
//密码输入以"******"显示
voidinputpass(char*pass){
inti=0
charc
while(isprint(c=getch())){
pass[i++]=c
//printf("*")
}
pass[i]='\0'
printf("\n")
}
#include <iostream>#define BufLength 100
void Encrypted_Decrypt(char* filepath, char* sec, int seclegth)
{
FILE * file = fopen(filepath, "r+")
if (NULL == file)
{
std::cout <<"打开文件出错" <<std::endl
return
}
char buffer[BufLength]
char secret[BufLength]
int n = 0
while ((n = fread(buffer, 1, BufLength, file))>0)
{
for (int i = 0i <ni++)
secret[i] = buffer[i] ^ sec[i % (seclegth + 1)]//加密
fseek(file, -n, SEEK_CUR)//移动字符串头在文件中的位置
fwrite(secret, 1, n, file)//覆盖写入秘文
fseek(file, n, SEEK_CUR)//移动字符串尾在文件中的位置,下次循环读取下一串
}
fclose(file)
}
int main()
{
std::cout <<"输入密码:"
char psw[256]
std::cin >>psw
std::cout <<"加密或者解密文件(全路径如d:/1.txt):"
char filepath[256]
std::cin >>filepath
Encrypted_Decrypt(filepath, psw, strlen(psw))
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)