中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

c語(yǔ)言加密函數(shù)命名,函數(shù)加密的定義

用C語(yǔ)言設(shè)計(jì)程序進(jìn)行文件的加密

這里采用加密函數(shù)是:

在應(yīng)縣等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需網(wǎng)站策劃,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),全網(wǎng)營(yíng)銷推廣,外貿(mào)網(wǎng)站制作,應(yīng)縣網(wǎng)站建設(shè)費(fèi)用合理。

如果是數(shù)組,則不進(jìn)行加密;

如果是字符,首先將a變成b,b變c,....依次類推,

然后再與加密字符異或

方法/步驟

首先打開(kāi)VC++6.0

選擇文件,新建

選擇C++ source file 新建一個(gè)空白文檔

聲明頭文件

#includestdio.h

#includestdlib.h

#includestring.h

首先寫(xiě)個(gè)加密函數(shù),算法就是簡(jiǎn)介里說(shuō)的

void EncryptFile(FILE *sfp,FILE *dfp,char pwd)

{

char ch;

if(sfp==0||dfp==0)

{

printf("ERROR!\n");

return;

}

while((ch=fgetc(sfp))!=EOF)

{

if((ch='a')(ch='z'))

{

ch=(ch-'a'+1)%26+'a';

ch=ch^pwd;

}

if((ch='A')(ch='Z'))

{

ch=(ch-'A'+1)%26+'A';

ch=ch^pwd;

}

fputc(ch,dfp);

}

}

寫(xiě)解密子函數(shù):與加密的過(guò)程相反

void DecryptFile(FILE *sfp,FILE *dfp,char pwd)

{

char ch;

while((ch=fgetc(sfp))!=EOF)

{

if((ch='a')(ch='z'))

{

ch=ch^pwd;

ch=(ch-'a'+25)%26+'a';

}

if((ch='A')(ch='Z'))

{

ch=ch^pwd;

ch=(ch-'A'+25)%26+'A';

}

fputc(ch,dfp);

}

}

輸出函數(shù),輸出文件內(nèi)容

void OutputFile(FILE *fp)

{

char ch;

while((ch=fgetc(fp))!=EOF)

putchar(ch);

}

主函數(shù),主要調(diào)用這幾個(gè)函數(shù)

int main()

{

/*用戶輸入的要加密的文件名*/

char sfilename[20];

/*用戶輸入加密后保存的文件名*/

char dfilename[20];

/*用來(lái)保存密碼字符*/

char pwd;

FILE *sfp,*dfp;

printf("\nPlease input filename to be encrypted:\n");

/*得到要加密的文件名*/

gets(sfilename);

/*得到加密后你要的文件名*/

printf("input filename to save the encrypted file:\n");

gets(dfilename);

/*得到加密字符*/

printf("Please input your Password:\n");

//scanf("%c",pwd);

pwd=getch();

/*屏幕以*來(lái)表示輸入的加密字符*/

printf("*\n");

/*以只讀方式打開(kāi)要加密的文件*/

if((sfp=fopen(sfilename,"r"))==0)

{

printf("Can't open the file :%s\n",sfilename);

exit(0);

}

/*輸出要加密的文件*/

printf("\nThe the text of file to be encrypted is:\n");

OutputFile(sfp);

/*建立加密后的文件*/

if((dfp=fopen(dfilename,"w+"))==0)

{

printf("Can't open or create the file :%s\n",dfilename);

//exit(0);

}

/*文件加密*/

fseek(sfp,0L,SEEK_SET);

EncryptFile(sfp,dfp,pwd);

printf("\n\nEncrypted the file successfully!\n");

/*輸出加密后的文件*/

printf("\nAfter encrypting the text of file is:\n");

fseek(dfp,0L,SEEK_SET);

OutputFile(dfp);

fclose(sfp);

fclose(dfp);

getch();

return 0;

}

c語(yǔ)言編寫(xiě)字符串加密函數(shù) 不要寫(xiě)得太難啊

#include?stdio.h

#include?ctype.h

char?*encrypt(char?*text)?{

char?c;

char?*p?=?text;

for?(;?*text;?++text)?{

c?=?*text;

if?(isdigit(c))

*text?=?'0'?+?'9'?-?c;

else?if?(islower(c))?{

c?=?c?+?3;

if?(c??'z')

c?=?c?-?26;

*text?=?c;

}?else?if?(isupper(c))?{

c?=?c?+?3;

if?(c??'Z')

c?=?c?-?26;

*text?=?c;

}

}

return?p;

}

int?main()?{

char?text[100];

printf("輸入明文:");

scanf("%s",?text);

printf("密文:%s\n",?encrypt(text));

getchar();

}

寫(xiě)一個(gè)加密程序,命名為encrypt-學(xué)號(hào).c

c語(yǔ)言文件加密和解密方法如下: 1、首先打開(kāi)VC++6.0; 2、選擇文件,新建; 3、選擇C++ source file 新建一個(gè)空白文檔; 4、聲明頭文件 #include #include #include 首先寫(xiě)個(gè)加密函數(shù),算法就是簡(jiǎn)介里說(shuō)的; void EncryptFile(FILE *sfp,FILE

網(wǎng)站名稱:c語(yǔ)言加密函數(shù)命名,函數(shù)加密的定義
分享URL:http://www.rwnh.cn/article30/dsijoso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、定制網(wǎng)站網(wǎng)站營(yíng)銷、網(wǎng)頁(yè)設(shè)計(jì)公司、手機(jī)網(wǎng)站建設(shè)、做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁(yè)設(shè)計(jì)公司
林州市| 桦甸市| 南昌市| 措勤县| 聂荣县| 安吉县| 扎兰屯市| 钟山县| 曲阳县| 仙桃市| 昌图县| 十堰市| 都安| 黄龙县| 四子王旗| 徐汇区| 宜宾市| 中卫市| 兰州市| 东乡族自治县| 东平县| 洪雅县| 旺苍县| 泰来县| 嘉峪关市| 承德市| 清镇市| 宁陕县| 宝鸡市| 蓝山县| 马山县| 邳州市| 孙吴县| 铜山县| 镇坪县| 蒙城县| 晋州市| 建昌县| 太仓市| 浦县| 子长县|