java实现凯撒加密(打包和程序原码) 加密解密,界面简单美观
2023-07-18 11:48:13 16KB java实现凯撒加密
1
基于MFC设计的凯撒加密解密程序,本文件要解压
2023-07-18 11:29:57 23KB MFC 凯撒加密 vc6.0
1
凯撒加密解密程序源代码设计资料
2022-06-06 18:02:02 1KB 文档资料
凯撒加密算法C语言实现.doc
2022-05-07 19:10:06 33KB c语言 文档资料 开发语言
栅格加密和凯撒加密的双加密及解密过程.docx
2021-12-29 13:06:08 54KB C 编程 加密
1
凯撒加密解密的C语言实现,自己写的,运行过了
2021-12-20 00:46:30 2KB C语言 凯撒加密
1
支持对字母的转换加密 解密
2021-12-17 09:44:15 8KB 凯撒 加密 密码 解密
1
c语言编写,欢迎扔板砖 //移位算法 #include #include #define SIZE 50 int main() { //i 用于计数输入个数,j 为临时变量, plain 存放明文, cipher 存放密文,decryption存放解密后文本,fpp 为明文文件指针,fpc 为密文文件指针 int i,j; char plain[SIZE],cipher[SIZE],decryption[SIZE],ciphertext[SIZE]; FILE * fpp,* fpc,* fpd; //加密 //建立新的明文TXT文件 printf("Caesar algorithm\n"); if((fpp=fopen("plain.txt","w+"))==NULL) { printf("creat new plain file error!\n"); exit(0); } //输入明文 printf("input plain alphabet:\n"); i=0; scanf("%c",&plain[i]); while(plain[i]!='\n'&&i122) { cipher[j]=cipher[j]%122+96; printf("cipher %d = %c\n",j,cipher[j]); } else if(cipher[j]>90) { cipher[j]=cipher[j]%90+64; printf("cipher %d = %c\n",j,cipher[j]); } else { printf("cipher %d = %c\n",j,cipher[j]); } } //建立密文文件 if((fpc=fopen("cipher.txt","w+"))==NULL) { printf("create new cipher file error!"); exit(0); } for(j=0;j
2021-12-01 15:45:40 3KB 凯撒加密算法
1
凯撒加密算法分析,Java代码实现,GUI。
2021-11-25 13:59:44 128KB Java 凯撒加密
1
该资源C++实现简单凯撒加密解密算法,内容简单实用,希望能帮助大家
2021-11-19 13:16:26 844B C++ 凯撒 加密 解密
1