C语言练习_2用C语言实现凯撒密码加密解密

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言练习_2用C语言实现凯撒密码加密解密相关的知识,希望对你有一定的参考价值。

1.凯撒密码简介

又叫循环移位密码.它的加密方法是将明文中的每个字母用此字符在字母表中后面第k个字母替代.它的加密过程可以表示为下面的函数:E(m)=m+k(mod n)

其中:m为明文字母在字母表中的位置数;n为字母表中的字母个数;k为密钥;E(m)为密文字母在字母表中对应的位置数.

2.代码

#include <stdio.h>
#include <string.h>

//加密
int encrypt(char* plaintext, char* ciphertext, int k)

int i, z = 0;
int l = strlen(plaintext); //获取明文的长度
for (i = 0; i < l; i++)

//判断大小写
if (plaintext[i] >= A && plaintext[i] <= Z)
ciphertext[z] = ( (plaintext[i] - A) + k) % 26 + A;

else if (plaintext[i] >= a && plaintext[i] <= z)
ciphertext[z] = ((plaintext[i] - a) + k) % 26 + a;

else //判断是否是空格
ciphertext[z] = plaintext[i];

z++;

return 0;


//解密
int decrypt(char* plaintext, char* ciphertext, int k)

int i, z = 0;
int l = strlen(plaintext); //获取明文的长度
for (i = 0; i < l; i++)

//判断大小写
if (plaintext[i] >= A && plaintext[i] <= Z)
ciphertext[z] = (((plaintext[i] - A) - k)) % 26 + A;
if (((plaintext[i] - A) - k) < 0)
ciphertext[z] = ciphertext[z] + 26;


else if (plaintext[i] >= a && plaintext[i] <= z)
ciphertext[z] = ( ((plaintext[i] - a) - k)) % 26 + a;
if (((plaintext[i] - a) - k) < 0) //处理负数
ciphertext[z] = ciphertext[z] + 26;


else //判断是否是空格
ciphertext[z] = plaintext[i];

z++;

return 0;


int main()

char plaintext[50] = "";
char ciphertext[50] = "";
int k;
int type;
printf("请填写明文或者密文:\\n");
scanf("%[^\\n]", plaintext);
printf("请选择加密方式,输入1加密,输入2解密\\n");
scanf("%d", &type);
if (type == 1)
//加密
printf("请输入密钥k:\\n");
scanf("%d", &k);
encrypt(plaintext, ciphertext, k);
printf("明文%s的密文为:%s\\n", plaintext, ciphertext);

else if (type == 2)
//解密
printf("请输入密钥k:\\n");
scanf("%d", &k);
decrypt(plaintext, ciphertext, k);
printf("密文%s的明文为:%s\\n", plaintext, ciphertext);

return 0;

运行结果:

【C语言练习_2】用C语言实现凯撒密码加密解密_移位密码

【C语言练习_2】用C语言实现凯撒密码加密解密_c语言实现凯撒密码_02


以上是关于C语言练习_2用C语言实现凯撒密码加密解密的主要内容,如果未能解决你的问题,请参考以下文章

Go 语言入门很简单:Go 实现凯撒密码

凯撒加密算法(最简单的对称加密)

基于python语言实现凯撒加密

Python编程练习:编程实现恺撒密码

ZZNUOJ_用C语言编写程序实现1172:密码解密(指针专题)(附完整源码)

什么是凯撒加密法?