初解凯撒密码——C语言简单实现

凯撒密码

在密码学中,恺撒密码(英语:Caesar cipher),或称恺撒加密、恺撒变换、变换加密,是一种最简单且最广为人知的加密技术。它是一种替换加密的技术,属于简单的古典密码。明文中的所有字母都在字母表上向后(或向前)按照一个固定数目进行偏移后被替换成密文。例如,当偏移量是3的时候,所有的字母A将被替换成D,B变成E,以此类推。例如:当明文为i am fine时,密文为:enif ma i。这个加密方法是以罗马共和时期恺撒的名字命名的,当年恺撒曾用此方法与其将军们进行联系。
当向右偏移量为3时,C语言代码如下:

#include<stdio.h>
void main()
{
	int x=1;
	int a,i;
	char s[5];
	while(x==1)
	{
		printf("请选择您要进行的操作:1.加密	2.解密	3.结束操作\n");
		scanf("%d",&a);
		switch(a)
		{
		case 1:
			{
				printf("请输入需要加密的信息:");
				scanf("%s",s);
				for(i=0;i<=4;i++)
				{
					s[i]=(s[i]-97+3)%26+97;
				}
				printf("密文为:%s\n",s);
				break;//加上break才可以循环
			}
		case 2:
			{
				printf("请输入需要解密的信息:");
				scanf("%s",s);
				for(i=0;i<=4;i++)
				{
					s[i]=((s[i]-97-3)%26+26)%26+97;
				}
				printf("明文为:%s\n",s);
				break;
			}
		case 3:
			{
				x=0;
			}
		}
	}

}

偏移量不一定为3,也可以是其他的数字。如果偏移量为K时,采用模块化设计思想,则代码如下:

#include<stdio.h>
#include <string.h>
#include<stdlib.h>
#define MAX 100

char ciphertext[MAX];    //密文
char plaintext[MAX];     //明文
int K;

//加密
void Encryption()
{
	printf("\n请输入明文:");
	gets(plaintext);
	printf("\n密文为:");
	for(int i=0; plaintext[i] != '\0'; i++)
	{
        if(plaintext[i] >= 'A' && plaintext[i] <= 'Z')
        {
           ciphertext[i] = (plaintext[i] - 'A' + K) % 26 + 'A';
        }
        else if (plaintext[i] >= 'a' && plaintext[i] <= 'z')
        {
            ciphertext[i]=(plaintext[i] - 'a' + K) % 26 + 'a';
        }
        else
			ciphertext[i] = plaintext[i];

        printf("%c",ciphertext[i]);
    }
	printf("\n");
}

//解密
void Decryption()
{
	printf("\n请输入密文:");
	gets(ciphertext);
	printf("\n明文为:");
	for(int i=0; ciphertext[i] != '\0'; i++)
	{
        if(ciphertext[i] >= 'A' && ciphertext[i] <= 'Z')
        {
           plaintext[i] = ((ciphertext[i] - 'A' - K) % 26 + 26)%26 + 'A';
        }
        else if (ciphertext[i] >= 'a' && ciphertext[i] <= 'z')
        {
            plaintext[i]=((ciphertext[i] - 'a' - K) % 26 + 26)%26 + 'a';
        }
        else
			plaintext[i] = ciphertext[i];

        printf("%c",plaintext[i]);
    }
	printf("\n");
}

void main()
{
    int n,flag=1;
	printf("密钥为:");
	scanf("%d",&K);
while(flag)
{
	printf("\n请选择(1:加密,2:解密,3:退出):");
	scanf("%d",&n);
	getchar();
	switch(n)
	{
	case 1:
		Encryption();
		break;
	case 2:
		Decryption();
		break;
	case 3:exit(0);
	}
}
}
  • 26
    点赞
  • 150
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
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'&&i<SIZE) { i++; scanf("%c",&plain[i]); } printf("success input %d characters\n",i); //将明文转存到文件中 for(j=0;j<i;j++) { if(fwrite(&plain[j],sizeof(char),1,fpp)!=1) { printf("saving plain file error!\n"); exit(0); } } printf("success saving plain text!\n"); //加密 for(j=0;j<i;j++) { cipher[j]=plain[j]+3; if(cipher[j]99) { printf("cipher %d = %c\n",j,cipher[j]); } else if(cipher[j]>122) { 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<i;j++) { if(fwrite(&cipher[j],sizeof(char),1,fpc)!=1) { printf("saving cipher file error!"); exit(0); } } printf("success saving cipher file!"); printf("\n"); //解密 printf("input ciphertext alphabet:\n"); i=0; scanf("%c",&ciphertext[i]); while(ciphertext[i]!='\n'&&i<SIZE) { i++; scanf("%c",&ciphertext[i]); } for(j=0;j<i;j++) { decryption[j]=ciphertext[j]-3; if(decryption[j]90&&decryption[j]<97) { decryption[j]=123-(97-decryption[j]); printf("character %d = %c\n",j,decryption[j]); } else {

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值