凯撒密码程序

合集下载

凯撒密码解密算法

凯撒密码解密算法

凯撒密码是一种简单的替换式密码,其加密和解密都是基于字母在字母表中的位置进行的。

加密时,将明文中每个字母的位置加上或减去一个固定的数字,从而得到密文。

解密时,将密文中每个字母的位置减去或加上固定的数字,从而得到原始的明文。

下面是凯撒密码的解密算法步骤:
1. 首先,将密文中的每个字母映射回明文字母表中的位置。

2. 然后,计算明文字母在字母表中的位置,减去偏移量。

3. 最后,将计算出的位置映射回明文字母表中的位置,得到解密后的明文字母。

以字母"M"为例,其在字母表中的位置是10,偏移量为3,则解密过程如下:
1. 将"M"映射回明文字母表中的位置,即10 - 3 = 7。

2. 计算7在明文字母表中的位置,即7 - 3 = 4。

3. 将4映射回明文字母表中的位置,即4 - 3 = 1。

因此,"M"解密后的明文字母为"D"。

需要注意的是,如果密文中的字母在字母表中的位置超过了26,则需要先将其减去26,再进行解密。

例如,"Z"在字母表中的位置是26,解密时需要将其减去26,再进行解密。

C语言加密与解密算法

C语言加密与解密算法

C语言加密与解密算法在计算机科学与信息安全领域,加密与解密算法起着至关重要的作用。

加密算法用于将原始数据转换为不可读的密文,而解密算法则用于将密文还原为可读的原始数据。

C语言是一种常用的编程语言,具备高效性和灵活性,适用于加密与解密算法的开发。

本文将介绍几种常用的C语言加密与解密算法。

一、凯撒密码算法凯撒密码算法是一种最简单的替换加密算法,通过将字母按照固定的偏移量进行替换来实现加密与解密。

以下是一个简单的C语言凯撒密码实现例子:```c#include <stdio.h>void caesarEncrypt(char* message, int key) {int i = 0;while (message[i] != '\0') {if (message[i] >= 'a' && message[i] <= 'z') {message[i] = (message[i] - 'a' + key) % 26 + 'a';} else if (message[i] >= 'A' && message[i] <= 'Z') {message[i] = (message[i] - 'A' + key) % 26 + 'A';}i++;}}void caesarDecrypt(char* message, int key) {int i = 0;while (message[i] != '\0') {if (message[i] >= 'a' && message[i] <= 'z') {message[i] = (message[i] - 'a' - key + 26) % 26 + 'a'; } else if (message[i] >= 'A' && message[i] <= 'Z') {message[i] = (message[i] - 'A' - key + 26) % 26 + 'A'; }i++;}}int main() {char message[] = "Hello, World!";int key = 3;printf("Original message: %s\n", message);caesarEncrypt(message, key);printf("Encrypted message: %s\n", message);caesarDecrypt(message, key);printf("Decrypted message: %s\n", message);return 0;}```以上程序演示了凯撒密码的加密与解密过程,通过指定偏移量实现对消息的加密与解密。

凯撒密码 程序

凯撒密码 程序

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
else n=n%10; if(n%5==0) n=n+2; else n=n; while(ch>='A'&&ch<='Z') {

python实现凯撒密码、凯撒加解密算法

python实现凯撒密码、凯撒加解密算法

python实现凯撒密码、凯撒加解密算法:计算并输出偏移量为3的凯撒密码的结果注意:密⽂是⼤写字母,在变换加密之前把明⽂字母都替换为⼤写字母def casar(message): # *************begin************# message1=message.upper() #把明⽂字母变成⼤写 message1=list(message1) #将明⽂字符串转换成列表 list1=[] for i in range(len(message1)): if message1[i]==' ': list1.append(message1[i]) #若为空格不⽤移动 eliford(message1[i]) <= 90-3+1: #A-X右移三位 list1.append(chr(ord(message1[i]) + 3)) result = ''.join(list1) #列表转换成字符串 else:list1.append(chr(ord(message1[i]) - (26-3))) #Y和Z回到A、B result = ''.join(list1) print(result) # **************end*************# def main(): message = input() casar(message) if __name__=='__main__': main()测试输⼊:Guet 预期输出:JXHW 测试输⼊:information security 预期输出:LQIRUPDWLRQ VHFXULWB凯撒密码原理:根据输⼊的加解密模式和密钥对消息进⾏加解密。

注意:如果是加密,输出的密⽂是⼤写字母,如果是解密,按照凯撒解密后,转换为⼩写后,输出解密后的明⽂.def casar(mode,message,key): # *************begin************# if mode==1: #加密 message1 = message.upper() # 把明⽂字母变成⼤写message1 = list(message1) # 将明⽂字符串转换成列表 list1 = [] for i in range(len(message1)): if message1[i] == ' ':list1.append(message1[i]) # 若为空格不⽤移动 elif ord(message1[i]) <= 65 +key-1: list1.append(chr(ord(message1[i]) + key)) # 右移key位result = ''.join(list1) # 列表转换成字符串 else: list1.append(chr(ord(message1[i]) - key)) result = ''.join(list1) print(result) elif mode==0: #解密message2 = list(message) # 将明⽂字符串转换成列表 list2 = [] for i in range(len(message2)): if message2[i] == ' ': list2.append(message2[i]) # 若为空格不⽤移动 elif ord(message2[i]) <= 65+ key -1: list2.append(chr(ord(message2[i]) + (26-key))) # 右移三位 result = ''.join(list2) # 列表转换成字符串 else: list2.append(chr(ord(message2[i]) - key)) result = ''.join(list2) result = result.lower() print(result) #**************end*************# def main(): mode = int(input()) # 1代表加密,0代表解密 message = input() #待加密或解密的消息 key =int(input()) # key的范围0~25之间 casar(mode,message,key) if __name__=='__main__': main()测试输⼊: 1 zhang 13 测试输出: MUNAT 测试输⼊: 0 GOHUN 7 测试输出: zhang编写⼀个仿射加解密程序,范围是所有的⼤⼩写字母范围本题需要掌握相关知识1.仿射加密算法,2.扩展的欧⼏⾥得算法。

python实现简单的恺撒密码加密并输出

python实现简单的恺撒密码加密并输出

python实现简单的恺撒密码加密并输出描述恺撒密码是古罗马恺撒⼤帝⽤来对军事情报进⾏加解密的算法,它采⽤了替换⽅法对信息中的每⼀个英⽂字符循环替换为字母表序列中该字符后⾯的第三个字符,即,字母表的对应关系如下:原⽂:A B C D E F G H I J K L M N O P Q R S T U V W X Y Z密⽂:D E F G H I J K L M N O P Q R S T U V W X Y Z A B C对于原⽂字符P,其密⽂字符C满⾜如下条件:C=(P+3) mod 26上述是凯撒密码的加密⽅法,解密⽅法反之,即:P=(C-3) mod 26假设⽤户可能使⽤的输⼊包含⼤⼩写字母a~zA~Z、空格和特殊符号,请编写⼀个程序,对输⼊字符串进⾏恺撒密码加密,直接输出结果,其中空格不⽤进⾏加密处理。

使⽤input()获得输⼊。

输⼊⽰例1: python is good输出⽰例1: sbwkrq lv jrrg1 pwd = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'2 before = input() #输⼊要加密的话3 beforeUp = before.upper() #将输⼊的所有字符变⼤写4 result = ''5for i in range(len(before)):6if beforeUp[i] in pwd: #过滤⾮字母7 start = pwd.index(beforeUp[i])8 end = (start+3)%26 #得到在pwd中的下标9if before[i].islower():10 result += pwd[end].lower()11else:12 result +=pwd[end]13else:14 result +=before[i]15print(result)⼤家有什么别的好⽅法吗。

python实现凯撒密码

python实现凯撒密码

python实现凯撒密码在密码学中,凯撒密码(或称恺撒加密、恺撒变换、变换加密)是⼀种最简单且最⼴为⼈知的加密技术。

它是⼀种替换加密的技术。

这个加密⽅法是以恺撒的名字命名的,当年恺撒曾⽤此⽅法与其将军们进⾏联系。

恺撒密码通常被作为其他更复杂的加密⽅法中的⼀个步骤,例如维吉尼亚密码。

恺撒密码还在现代的ROT13系统中被应⽤。

但是和所有的利⽤字母表进⾏替换的加密技术⼀样,恺撒密码⾮常容易被破解,⽽且在实际应⽤中也⽆法保证通信安全。

尽管是最简单的加密技术,但那该怎么在python中如何现实呢?代码如下:def ask():while True:print("Welcome to you coming!")print("you can choose mode : encrypt(e) or decrypt(d)") #有解密和加密模式print("If you choose encrypt ,you can lock the message!") #加密提⽰print("If you choose decrypt ,you can unlock the message!") #解密提⽰print("If you wanna exit , input 'q'!!") #退出提⽰mode = input("choose:").lower() #将输⼊的模式进⾏变换(从⼤写变⼩写,⼩写部分不变)if mode in 'encrypt e decrypt d q'.split(): #当模式是被要求的encrypt e(加密模式)decrypt d(解密模式) q(退出)时进⾏下⼀步操作#print(mode) #打印输⼊的模式return mode #将mode的值作为返回值else:print('Please input right option!!') #输出提⽰def getKey(mode):key = 0 #设置默认的keywhile key <= 0 or key >= 26: #限制key的范围在(1-25以内的数)try: #这⾥进⾏异常处理,将⾮整数类型的输⼊进⾏错误提⽰打印key = int(input("Please input your key:(1-26)"))except:print("Please input correct number!!")#对解密的密匙进⾏变换if mode == 'd' or mode == 'decrypt':key = -keyreturn keydef getMessage(key):#输⼊信息while True:informetion = input("Please input message!!") #输⼊要解密或者加密的信息if informetion.isalpha(): #判断输⼊的字符串是否为纯字母breakelse:print("Please input continuous character") #输错提⽰message = '' #设置输出的初始值for x in informetion: #将输⼊信息⾥的进⾏逐⼀字母加密/解密num = ord(x) #将单⼀字符通过ascii表进⾏转换,将字母转换为数字num += key #加上key的值进⾏下列运算if x.isupper(): #判断是否是⼤写字母if num > ord('Z'): #对超出ascii对应数值的范围进⾏处理num -=26print(message)elif num < ord('A'):num +=26print(message)elif x.islower(): #判断是否⼩写字母if num > ord('z'):num -=26elif num < ord('a'):num +=26message += chr(num) #将单⼀字符通过ascii表进⾏转换,将数字转换为字母return message #返回message的值if __name__=="__main__": #主程序mode = ask() #将ask()返回值存于mode变量中if mode == 'q': #进⾏退出判断print('welcome!!')else:key = getKey(mode) #将mode变量的值带⼊getKey函数中运⾏,运⾏后将key的值存⼊到key变量中last = getMessage(key) #将key变量的值带⼊到getMessage函数中,运⾏后将message的值存⼊到last变量中print(last)以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

凯撒密码乘法加解密

凯撒密码乘法加解密
scanf("%s",infile);/*输入需要加密的文件名*/
if((in=fopen(infile,"r"))==NULL)
{
printf("Can not open theinfile!\n");
printf("Press any key to exit!\n");
getch();
exit(0);
printf("\nGoodBye!\n");
}
FILE *in,*out;
charinfile[20],outfile[20];
textbackground(BLACK);
textcolor(LIGHTGREEN);
clrscr();
menu();
ch0=getch();
while(ch0)
{
if(ch0=='1')
{
clrscr();
printf("\nPleaseinput theinfile:");
凯撒密码乘法加解密凯撒密码解密凯撒密码在线解密凯撒密码解密软件凯撒密码解密工具凯撒加密解密算法凯撒解密凯撒密码加密凯撒密码凯撒密码算法
乘法加解密程序:
#include<stdio.h>
#include<conio.h>
intsa[100];
intG=0;
intH=0;
char encrypt(charch,intn)/*加密ntf("\nEncryptis over!\n");
fclose(in);
fclose(out);
}
else

凯撒密码程序

凯撒密码程序

#include<stdio.h>#include<conio.h>char JFjiami(char ch,int n){while(ch>='A'&&ch<='Z'){n=n%26;return ('A'+(ch-'A'+n)%26); }while(ch>='a'&&ch<='z'){n=n%26;return ('a'+(ch-'a'+n)%26); }while(ch>='0'&&ch<='9'){n=n%10;return ('0'+(ch-'0'+n)%10); }return ch;}char JFjiemi(char ch,int n){static int k;while(ch>='A'&&ch<='Z'){ k=n%26;n=26-k;return ('A'+(ch-'A'+n)%26); }while(ch>='a'&&ch<='z'){ k=n%26;n=26-k;return ('a'+(ch-'a'+n)%26); }while(ch>='0'&&ch<='9'){ k=n%10;n=10-k;return ('0'+(ch-'0'+n)%10); }return ch;}char CFjiami(char ch,int n){if(n%2==0) n=n%10+1;else n=n%10;if(n%5==0) n=n+2;else n=n;while(ch>='A'&&ch<='Z'){return ('A'+((ch-'A')*n)%26); }while(ch>='a'&&ch<='z'){return ('a'+((ch-'a')*n)%26); }while(ch>='0'&&ch<='9'){return ('0'+((ch-'0')*n)%10); }return ch;}char CFjiemi(char ch,int n){int i;int k,h;if(n%2==0) n=n%10+1;else n=n%10;if(n%5==0) n=n+2;else n=n;while(ch>='A'&&ch<='Z'){for(i=0;i<100;i++){k=((ch-'A')+i*26)%n;if(k==0)h=((ch-'A')+i*26)/n;if(h>=0&&h<=26)return ('A'+h);}}while(ch>='a'&&ch<='z'){for(i=0;i<n;i++){k=((ch-'a')+i*26)%n;if(k==0)h=((ch-'a')+i*26)/n;if(h>=0&&h<=26)return ('a'+h);}}while(ch>='0'&&ch<='9'){for(i=0;i<n;i++){k=((ch-'0')+i*10)%n;if(k==0)h=((ch-'0')+i*10)/n;if(h>=0&&h<=9)return ('0'+h);}}return ch;}void menu(){printf("\n========================================================="); printf("\n 1.JFjiami the file");printf("\n 2.CFljiami the file");printf("\n 3.JFjiemi the file");printf("\n 4.CFjiemi the file");printf("\n 5.Quit\n");printf("=========================================================\n"); printf("Please input a number rang from 1 to 5 and select a item:"); return;}void main(){int i,n;char ch0,ch1;FILE *in,*out;char infile[20],outfile[20];sleep(3);menu();ch0=getch();while(ch0!='5'){if(ch0=='1'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(JFjiami(fgetc(in),n),out);}printf("\nJFjiami is over!\n");fclose(in);fclose(out);sleep(1);}if(ch0=='2'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(CFjiami(fgetc(in),n),out);}printf("\nCFjiami is over!\n");fclose(in);fclose(out);sleep(1);}if(ch0=='3'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(JFjiemi(fgetc(in),n),out);}printf("\nJFjiemi is over!\n");fclose(in);fclose(out);sleep(1);}if(ch0=='4'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(CFjiemi(fgetc(in),n),out);}printf("\nCFjiemi is over!\n");fclose(in);fclose(out);sleep(1);}menu();ch0=getch();}clrscr();printf("\nGood Bye!\n");sleep(3);}友情提示:本资料代表个人观点,如有帮助请下载,谢谢您的浏览!。

python凯撒密码解密算法的实现

python凯撒密码解密算法的实现

python凯撒密码解密算法的实现凯撒密码是一种简单的加密算法,它会将明文中的每个字母用一个固定的规律替换成另一个字母。

具体来说,就是将明文中的每个字母向后移动一定的位置,比如向后移动三个位置,那么A就会变成D,B就会变成E,以此类推。

这样加密后的密文只有通过解密算法才能被还原成原始的明文。

Python是一种极为流行的编程语言,它可以很方便地实现凯撒密码解密算法。

下面我们将介绍一种基于Python的凯撒密码解密算法实现方法。

实现步骤:1. 输入需要解密的密文内容,同时输入密文加密时移动的位数。

例如:密文为“G$yv%ud#p”,位移为3。

```cipher_text = input('请输入需要解密的密文:')key = int(input('请输入加密时移动的位数:'))```2. 利用 Python 中的 ord() 函数将密文中的每个字符转化为ASCII 码,并且将其减去移动的位数得到原始的 ASCII 码。

```plain_text = ''for letter in cipher_text:if letter.isalpha():code = ord(letter) - keyif letter.isupper() and code < ord('A'):code += 26elif letter.islower() and code < ord('a'):code += 26plain_text += chr(code)else:plain_text += letter```3. 对原始的 ASCII 码重新转换成对应的字符,得到解密后的明文。

```print('解密后的明文为:', plain_text)```完整程序代码如下:```cipher_text = input('请输入需要解密的密文:')key = int(input('请输入加密时移动的位数:'))plain_text = ''for letter in cipher_text:if letter.isalpha():code = ord(letter) - keyif letter.isupper() and code < ord('A'):code += 26elif letter.islower() and code < ord('a'):code += 26plain_text += chr(code)else:plain_text += letterprint('解密后的明文为:', plain_text)```需要注意的是,解密的过程是从密文中还原出明文的过程。

凯撒密码加密C语言简单实现

凯撒密码加密C语言简单实现

凯撒密码加密C语⾔简单实现凯撒加密(Julius Caesar)该⽅法把⼀条消息中的每个字母⽤字母表中固定距离之后的那个字母代替。

(如果超越了字母Z,会绕道字母表的起始位置。

例如,如果每个字母都⽤字母表中两个位置之后的字母代替,那么Y就会被替换为A,Z就会被替换为B。

)然后编写程序…………⽤户输⼊待加密的消息和移位数:不是字母的不要改动…………#include <stdio.h>#include <string.h>int main(){char passwd[100],encrypted[100];int i,j,k,t,move;while(1){printf("Enter message to be encrypted:");gets(passwd);printf("Enter shift amount(1-25):");scanf("%d%*c",&move);for(i=0; i<strlen(passwd); i++){if(passwd[i] >= 'A' && passwd[i] <= 'Z'){passwd[i] = ((passwd[i]-'A')+move)%26+'A';}else if(passwd[i] >= 'a' && passwd[i] <= 'z'){passwd[i] = ((passwd[i]-'a')+move)%26+'a';}}printf("%s",passwd);printf("\n");}return0;}然后就是这样⼦如输⼊Go head, make my day.3输出:Jr dkhdg, pdnh pb gdb.………………………………………………如果,输⼊这样就会解密:Jr dkhdg, pdnh pb gdb.23输出:Go head, make my day.。

凯撒密码编程实验报告(3篇)

凯撒密码编程实验报告(3篇)

第1篇一、实验目的1. 理解凯撒密码的基本原理和加密解密过程;2. 掌握C语言编程实现凯撒密码;3. 提高编程能力和密码学基础知识。

二、实验环境1. 软件工具:Visual Studio 20192. 操作系统:Windows 10三、实验内容1. 凯撒密码原理介绍凯撒密码是一种最简单的移位密码,通过将字母表中的每个字母向前或向后移动固定数量位置来进行加密和解密。

例如,密钥为3时,A会被加密为D,B会被加密为E,以此类推。

解密过程是将密文中的每个字母向前或向后移动相同的位数,恢复出明文。

2. C语言实现凯撒密码(1)加密函数```cvoid caesar_encrypt(char input, char output, int key) {int i = 0;while (input[i] != '\0') {if (input[i] >= 'A' && input[i] <= 'Z') {output[i] = ((input[i] - 'A' + key) % 26) + 'A';} else if (input[i] >= 'a' && input[i] <= 'z') {output[i] = ((input[i] - 'a' + key) % 26) + 'a';} else {output[i] = input[i];}i++;}output[i] = '\0';}```(2)解密函数```cvoid caesar_decrypt(char input, char output, int key) {int i = 0;while (input[i] != '\0') {if (input[i] >= 'A' && input[i] <= 'Z') {output[i] = ((input[i] - 'A' - key + 26) % 26) + 'A'; } else if (input[i] >= 'a' && input[i] <= 'z') {output[i] = ((input[i] - 'a' - key + 26) % 26) + 'a'; } else {output[i] = input[i];}i++;}output[i] = '\0';}```3. 测试程序```cinclude <stdio.h>include <string.h>void caesar_encrypt(char input, char output, int key) { // 加密函数}void caesar_decrypt(char input, char output, int key) { // 解密函数}int main() {char input[100], output[100];int key;printf("请输入密钥(1-25): ");scanf("%d", &key);printf("请输入明文: ");scanf("%s", input);caesar_encrypt(input, output, key);printf("加密结果: %s\n", output);caesar_decrypt(output, input, key);printf("解密结果: %s\n", input);return 0;}```四、实验结果与分析1. 实验结果(1)输入密钥为3,明文为"hello world",加密结果为"kiho world",解密结果为"hello world";(2)输入密钥为5,明文为"goodbye world",加密结果为"jvvhv world",解密结果为"goodbye world"。

凯撒密码加密解密原理

凯撒密码加密解密原理

凯撒密码加密解密原理
凯撒密码是一种早期的密码术,也被称为置换密码,是一种多字母替换密码。

它的加密和解密原理基于凯撒密码的特点,即每个字母都用该字母的下一个字母(即第二个字母)来替换。

凯撒密码的加密过程如下:
假设要加密的明文是“A B C”,将明文中的每个字母转换为该字母的下一个字母,则加密后的密文是“D E F G”。

接下来,需要使用密文中的每个字母来解密原始明文。

为了做到这一点,需要使用一个“密钥”,它是一个长度的二进制数,与密文中使用的每个字母相同。

密钥与密文一起发送给接收方。

接收方收到密文和密钥后,可以使用密钥来解密密文并获取明文。

下面是凯撒密码的解密过程:
假设要解密密文“D E F G”,使用密钥“12345678901234567890”,则解密后的明文是“A B C”。

凯撒密码的优点是简单易学,只需要明文的每个字母和一个长度相同的密钥即可进行加密和解密。

但是,它的缺点也是明显的,比如密钥长度太短,容易被暴力攻击破解。

现在,随着计算机技术的发展,凯撒密码已经不再是一种安全的密码术。

如果需要加密和解密数据,请使用更现代和安全的密码技术,如AES、RSA等。

JAVA第一次实验——凯撒密码的实现

JAVA第一次实验——凯撒密码的实现

JAVA第⼀次实验——凯撒密码的实现JAVA实验⼀编写程序实现凯撒密码201352330 潘俊洋⼀.实验说明凯撒密码作为⼀种最为古⽼的对称加密体制,在古罗马的时候都已经很流⾏,他的基本思想是:通过把字母移动⼀定的位数来实现加密和解密。

例如,如果字母的位数是3,明⽂字母B就变成了密⽂的E,依次类推,X将变成A,Y变成B,Z变成C,由此可见,位数就是凯撒密码加密和解密的密钥。

所以在程序中密钥key=3。

⼆.实验分析1.由于字母表中共26个字符,因此移位前先将移动的位数(key)和26取模。

由于Java中字符和整型可⾃动转换,因此将字符加上⼀个正整数即代表在字母表中右移多少位。

如果移动的位数是负值,则代表在字母表中左移多少位。

尽管在移动之前已经将移动的位数和26取了模,但通过这种⽅式实现右移或左移仍可能发⽣超界。

如字母x右移3位应是字母a,但将字母x增加3后超出26个字母的范围。

因此移位后使⽤两个if语句判断⼀下,如果向左超界(c<'a')则增加26;向右超界(c>'z')则减去26。

程序中⽤户输⼊需要⽤到Scanner例: Scanner input = new Scanner(System.in)import java.util.ScannerScannerScanner input = new Scanner();Scanner对象是可以读取控制台的输⼊这是⼀般的对象创建⽅法. 加了⼀个对象System.in参数,表⽰传递的是键盘的输⼊三.流程图(本⼈并不擅长做流程图 qvq)四.实验代码import java.util.Scanner;public class Test{void mj(){Scanner in = new Scanner(System.in);System.out.print("请选择操作(1.加密 2.解密):");int n=in.nextInt();if(n == 1){System.out.print("请输⼊待加密的字符串:");String str = in.next();String jm="";int key = 3;//凯撒密码加密,向后移位3位for(int i = 0;i < str.length();i++){char c = str.charAt(i);if(c >= 'a'&&c <= 'z'){if(c>='x'&&c<='z'){c-=26;c+=key;}else{c+=key;}}else if(c >= 'A'&&c <= 'Z'){if(c>='X'&&c<='Z'){c-=26;c+=key;}else{c+=key;}}jm += c;}System.out.print("加密后的字符串是:"+jm);System.out.print("\n输⼊任意建继续,0结束程序:"); n=in.nextInt();if(n==0){System.out.print(" 谢谢使⽤本程序,欢迎再次使⽤!"); }else{this.mj();}}else if(n == 2){System.out.print("请输⼊待解密的字符串:"); String str = in.next();String jm="";int key = -3;//凯撒密码解密,向前移位3位for(int i = 0;i < str.length();i++){char c = str.charAt(i);if(c >= 'a'&&c <= 'z'){if(c>='a'&&c<='c'){c+=26;c+=key;}else{c+=key;}}else if(c >= 'A'&&c <= 'Z'){if(c>='A'&&c<='C'){c+=26;c+=key;}else{c+=key;}}jm += c;}System.out.println("解密后的字符串:"+jm);System.out.print("\n输⼊任意建继续,0结束程序:");n=in.nextInt();if(n==0){System.out.print(" 谢谢使⽤本程序,欢迎再次使⽤!");}else{this.mj();}}else{System.out.print("请输⼊1或2,其他字符⽆效!\n输⼊任意建继续,0结束程序:"); n=in.nextInt();if(n==0){System.out.print(" 谢谢使⽤本程序,欢迎再次使⽤!");}else{this.mj();}}}public static void main(String[] args){Test mj=new Test();System.out.println("******欢迎使⽤凯撒密码******");mj.mj();}}五.运⾏测试六.实验感受在JAVA上实现了凯撒密码程序的设计和运⾏,结合密码学和JAVA的知识,同时提⾼和巩固了密码学和JAVA的学习内容。

python凯撒密码编写程序

python凯撒密码编写程序

python凯撒密码编写程序
以下是Python实现的凯撒密码加密程序:
```python
def caesar_encrypt(text, shift):
result = ""
for i in range(len(text)):
char = text[i]
if char.isalpha():
# 判断字符是否为字母,如果是字母则进行加密
ascii_offset = ord('a') if char.islower() else ord('A')
# 将字母转为ASCII码,然后加上偏移量,再转回字母
result += chr((ord(char) - ascii_offset + shift) % 26 + ascii_offset)
else:
# 如果字符不是字母,则直接添加到结果中
result += char
return result
```
这个函数接受两个参数:要加密的文本和偏移量。

它遍历文本中的每个字符,如果字符是字母,则将其加密,否则直接添加到结果中。

加密时,将字母转为ASCII码,然后加上偏移量,再转回字母。

注意,
这里使用了取模运算,以确保加密后的字母仍然在字母表中。

恺撒密码的C实现 实验报告

恺撒密码的C实现 实验报告

凯撒加密的C实现实验报告1.凯撒密码简介它是一种代换密码。

据说恺撒是率先使用加密函的古代将领之一,因此这种加密方法被称为恺撒密码。

凯撒密码作为一种最为古老的对称加密体制,在古罗马的时候都已经很流行,他的基本思想是:通过把字母移动一定的位数来实现加密和解密。

明文中的所有字母都在字母表上向后(或向前)按照一个固定数目进行偏移后被替换成密文。

例如,当偏移量是3的时候,所有的字母A将被替换成D,B 变成E,以此类推X将变成A,Y变成B,Z变成C。

由此可见,位数就是凯撒密码加密和解密的密钥2.程序的运行1.程序运行2.加密(密钥为2)3.解密程序代码:(具体见附件源程序)1.加密代码void C凯撒Dlg::OnBnClickedOk(){// TODO: 在此添加控件通知处理程序代码UpdateData(1);int i, num;char ch1[100] = {0},ch2[100] = {0};strcpy(ch2,m_mingwen);num = strlen(ch2);for(i=0;i<num;i++){if(ch2[i] >= 'a'&&ch2[i] <= 'z'){if(ch2[i]+m_miyue <= 'z'&&ch2[i] >= 'a'){ch1[i] = ch2[i] + m_miyue;}elsech1[i] = ch2[i] + m_miyue - 25;}if(ch2[i] >= 'A'&&ch2[i] <= 'Z'){if(ch2[i]+m_miyue <= 'Z'&&ch2[i] >= 'A'){ch1[i] = ch2[i] + m_miyue;}elsech1[i] = ch2[i] + m_miyue - 25;}}printf("%s\n",ch1);m_miwen = ch1;UpdateData(0);}2.解密代码void C凯撒Dlg::OnBnClickedButton1(){// TODO: 在此添加控件通知处理程序代码UpdateData(1);int i, num;char ch1[100] = {0},ch2[100] = {0};strcpy(ch2,m_miwen);num = strlen(ch2);for(i=0;i<num;i++){if(ch2[i] >= 'a'&&ch2[i] <= 'z'){if(ch2[i]-m_miyue >= 'a'){ch1[i] = ch2[i] - m_miyue;}elsech1[i] = ch2[i] - m_miyue + 25;}if(ch2[i] >= 'A'&&ch2[i] <= 'Z'){if(ch2[i]-m_miyue >= 'A'){ch1[i] = ch2[i] - m_miyue;}elsech1[i] = ch2[i] - m_miyue + 25;}}printf("%s\n",ch1);m_jiemi = ch1;UpdateData(0);}。

凯撒密码加密算法

凯撒密码加密算法

凯撒密码(Caesar cipher)是一种古老的加密算法,源于古罗马时期。

它是一种替换加密技术,通过对明文中的字母进行固定数目的偏移来实现加密。

这种加密方法简单易懂,但也容易破解。

下面详细列举凯撒密码的加密过程和原理:
1. 加密过程:
-明文中的每个字母都在字母表上向后(或向前)偏移一个固定的数目,这个数目称为“密钥”。

-偏移后的字母替换原来的字母,形成密文。

例如,当密钥为3时,明文中的'A'替换为'D','B'替换为'E',以此类推。

2. 解密过程:
-已知密钥和密文,反向进行加密过程,即在字母表上向前(或向后)偏移相应的数目,得到明文。

3. 密钥的作用:
-密钥决定了字母偏移的方向和距离。

在实际应用中,密钥可以是任意整数,但为了简化加密过程,通常使用较小的密钥,如1、2、3等。

4. 安全性:
-凯撒密码的安全性较低,因为只使用了一个密钥,容易猜测和破解。

在实际应用中,通常将凯撒密码作为其他更复杂加密算法的一个步骤,如维吉尼亚密码。

5. 变种:
-恺撒密码有许多变种,如ROT1、ROT13等,它们通过对字母表进行不同数目的循环移位来实现加密。

恺撒密码的加密程序

恺撒密码的加密程序

恺撒密码的加密程序恺撒密码是公元前50年古罗马恺撒用过的密码,罗马的军队用凯撒密码(三个字母表轮换)进行通信,加密方法是把a变成D,b变成E,c换成F,依次类推,z换成C。

将替换密码用于军事用途的第一个文件记载是恺撒著的《高卢记》。

恺撒描述了他如何将密信送到正处在被围困、濒临投降的西塞罗。

其中罗马字母被替换成希腊字母使得敌人根本无法看懂信息。

苏托尼厄斯在公元二世纪写的《恺撒传》中对恺撒用过的其中一种替换密码作了详细的描写。

恺撒只是简单地把信息中的每一个字母用字母表中的该字母后的第三个字母代替。

这种密码替换通常叫做恺撒移位密码,或简单的说,恺撒密码。

尽管苏托尼厄斯仅提到三个位置的恺撒移位,但显然从1到25个位置的移位我们都可以使用,因此,为了使密码有更高的安全性,单字母替换密码就出现了。

如:明码表A B C D E F G H I J K L M N O P Q R S T U V W X Y Z密码表Q W E R T Y U I O P A S D F G H J K L Z X C V B N M明文 F O R E S T密文Y G K T L Z只需重排密码表二十六个字母的顺序,允许密码表是明码表的任意一种重排,密钥就会增加到四千亿亿亿多种,我们就有超过4×1027种密码表。

破解就变得很困难。

用C语言编写恺撒密码的加密解密程序,要求:每个字符替换为其在ASCII码中前29个字符的符号。

例如,输入k,输出为N。

加密:方法一:#include<stdio.h>main(){char str[100];int i=0;gets(str);while (str!='\0'){printf("%c",str-29);i++;}}方法二:#include<stdio.h>main(){char c;while((c=getchar())!='\n'){if((c>='a'&&c<='z') || (c>='A'&&c<='Z')){c=c+4;if(c>'Z'&&c<'Z'+4 || c>'z') c=c-26;}printf("%c",c);}}程序三:#include<stdio.h>main(){ char i;printf("Input your word:");while(1){ i=getchar();if(i!='\n')printf("%c",i-29);else break;}}简述密码学密码学历和密码系统种类密码学(Cryptology)一字源自希腊文"krypto's"及"logos"两字,直译即为"隐藏"及"讯息"之意。

Python实现的凯撒密码算法示例

Python实现的凯撒密码算法示例

Python实现的凯撒密码算法⽰例本⽂实例讲述了Python实现的凯撒密码算法。

分享给⼤家供⼤家参考,具体如下:⼀介绍凯撒密码是⼀种⾮常古⽼的加密⽅法,相传当年凯撒⼤地⾏军打仗时为了保证⾃⼰的命令不被敌军知道,就使⽤这种特殊的⽅法进⾏通信,以确保信息传递的安全。

他的原理很简单,说到底就是字母于字母之间的替换。

下⾯让我们看⼀个简单的例⼦:“baidu”⽤凯撒密码法加密后字符串变为“edlgx”,它的原理是什么呢?把“baidu”中的每⼀个字母按字母表顺序向后移3位,所得的结果就是刚才我们所看到的密⽂。

⼆代码# -*- coding:utf-8 -*-import os#==================================================================## 凯撒密码(caesar)是最早的代换密码,对称密码的⼀种 ## 算法:将每个字母⽤字母表中它之后的第k个字母(称作位移值)替代 ##==================================================================#def encryption():str_raw = raw_input("请输⼊明⽂:")k = int(raw_input("请输⼊位移值:"))str_change = str_raw.lower()str_list = list(str_change)str_list_encry = str_listi = 0while i < len(str_list):if ord(str_list[i]) < 123-k:str_list_encry[i] = chr(ord(str_list[i]) + k)else:str_list_encry[i] = chr(ord(str_list[i]) + k - 26)i = i+1print ("加密结果为:"+"".join(str_list_encry))def decryption():str_raw = raw_input("请输⼊密⽂:")k = int(raw_input("请输⼊位移值:"))str_change = str_raw.lower()str_list = list(str_change)str_list_decry = str_listi = 0while i < len(str_list):if ord(str_list[i]) >= 97+k:str_list_decry[i] = chr(ord(str_list[i]) - k)else:str_list_decry[i] = chr(ord(str_list[i]) + 26 - k)i = i+1print ("解密结果为:"+"".join(str_list_decry))while True:print (u"1. 加密")print (u"2. 解密")choice = raw_input("请选择:")if choice == "1":encryption()elif choice == "2":decryption()else:print (u"您的输⼊有误!")三运⾏结果PS:关于加密解密感兴趣的朋友还可以参考本站在线⼯具:更多关于Python相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《》希望本⽂所述对⼤家Python程序设计有所帮助。

相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

#include<>char JFjiami(char ch,int n){while(ch>='A'&&ch<='Z'){n=n%26;return ('A'+(ch-'A'+n)%26); }while(ch>='a'&&ch<='z'){n=n%26;return ('a'+(ch-'a'+n)%26); }while(ch>='0'&&ch<='9'){n=n%10;return ('0'+(ch-'0'+n)%10); }return ch;}char JFjiemi(char ch,int n){static int k;while(ch>='A'&&ch<='Z'){ k=n%26;n=26-k;return ('A'+(ch-'A'+n)%26); }while(ch>='a'&&ch<='z'){ k=n%26;n=26-k;return ('a'+(ch-'a'+n)%26); }while(ch>='0'&&ch<='9'){ k=n%10;n=10-k;return ('0'+(ch-'0'+n)%10); }return ch;}char CFjiami(char ch,int n){if(n%2==0) n=n%10+1;if(n%5==0) n=n+2;else n=n;while(ch>='A'&&ch<='Z'){return ('A'+((ch-'A')*n)%26); }while(ch>='a'&&ch<='z'){return ('a'+((ch-'a')*n)%26); }while(ch>='0'&&ch<='9'){return ('0'+((ch-'0')*n)%10); }return ch;}char CFjiemi(char ch,int n){int i;int k,h;if(n%2==0) n=n%10+1;else n=n%10;if(n%5==0) n=n+2;else n=n;while(ch>='A'&&ch<='Z'){for(i=0;i<100;i++){k=((ch-'A')+i*26)%n;if(k==0)h=((ch-'A')+i*26)/n;if(h>=0&&h<=26)return ('A'+h);}}while(ch>='a'&&ch<='z'){for(i=0;i<n;i++){k=((ch-'a')+i*26)%n;if(k==0)h=((ch-'a')+i*26)/n;if(h>=0&&h<=26)return ('a'+h);}}while(ch>='0'&&ch<='9'){for(i=0;i<n;i++){k=((ch-'0')+i*10)%n;if(k==0)h=((ch-'0')+i*10)/n;if(h>=0&&h<=9)return ('0'+h);}}return ch;}void menu(){printf("\n========================================================="); printf("\n the file");printf("\n the file");printf("\n the file");printf("\n the file");printf("\n \n");printf("=========================================================\n"); printf("Please input a number rang from 1 to 5 and select a item:"); return;}void main(){int i,n;char ch0,ch1;FILE *in,*out;char infile[20],outfile[20];sleep(3);menu();ch0=getch();while(ch0!='5'){if(ch0=='1'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(JFjiami(fgetc(in),n),out);}printf("\nJFjiami is over!\n");fclose(in);fclose(out);sleep(1);}if(ch0=='2'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(CFjiami(fgetc(in),n),out);}printf("\nCFjiami is over!\n");fclose(in);fclose(out);sleep(1);}if(ch0=='3'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(JFjiemi(fgetc(in),n),out);}printf("\nJFjiemi is over!\n");fclose(in);fclose(out);sleep(1);}if(ch0=='4'){clrscr();printf("\nPlease input the infile:"); scanf("%s",infile);if((in=fopen(infile,"r"))==NULL){printf("Can not open the infile!\n"); printf("Press any key to exit!\n");getch();exit(0);}printf("Please input the key:");scanf("%d",&n);printf("Please input the outfile:");scanf("%s",outfile);if((out=fopen(outfile,"w"))==NULL){printf("Can not open the outfile!\n"); printf("Press any key to exit!\n");fclose(in);getch();exit(0);}while(!feof(in)){fputc(CFjiemi(fgetc(in),n),out);}printf("\nCFjiemi is over!\n");fclose(in);fclose(out);sleep(1);}menu();ch0=getch();}clrscr();printf("\nGood Bye!\n"); sleep(3);}。

相关文档
最新文档