Java实现凯撒密码加密,解密,破译

一、 实验目的
通过实际编程掌握kaiser密码的加密、解密与破译,加深对kaiser密码算法的认识。
二、 实验要求:
1、 根据课上所讲的内容,写出加密、解密公式。
2、 把试验内容的三个题目编程求出答案。
3、 把试验报告电子版传到教学网络平台上。

三、 实验环境
运行Windows操作系统的PC机,具有VC++等C语言编译环境
四、 实验内容
1、利用k=7时的kaiser密码加密明文:cryptography
2、利用k=4时的kaiser密码解密密文:QEXLIQEXMG
3、用kaiser密码获得秘文kddkmu,试所有可能解密它。
五、 思路:
1、先将明文字母转换为ASCII码,小写字母97-122,大写字母65-90。再将其减去97或65,即可得到0-25之间的数字
2、根据加密或解密的公式解密。再用类似的方法把0-25之间的数字转化为字母
3、破译时尝试密钥为0-25之间的所有的数字,从结果中挑选出有意义的即为明文。
六源代码
1.加密:package 密码学;

import java.util.Scanner;

public class jiami {

public static void main(String[] args) {
		System.out.println("请输入明文:");
		Scanner zx=new Scanner(System.in);//创建Scanner对象
		String z=zx.nextLine();
		System.out.println("请输入密钥:");
		Scanner zx1=new Scanner(System.in);
		int key=zx1.nextInt();//将下一输入项转换成int类型
		Encryption(z,key);//调用Encryption方法
	}

public static void Encryption(String str, int k) {
	String string="";
	for(int i=0;i='a'&&c<='z')//如果字符串中的某个字符是小写字母
		{
			c+=k%26;//移动key%26位
			if(c<'a')
				c+=26;//向左超界
			if(c>'z')
				c-=26;//向右超界
		}
		if(c>='A'&&c<='Z')//如果字符串中的某个字符是大写字母
		{
			c+=k%26;//移动key%26位
			if(c<'a')
				c+=26;//向左超界
			if(c>'z')
				c-=26;//向右超界
		}
		string +=c;//将解密后的字符连成字符串
	}
	System.out.println("加密后为:"+string);
}

}
2.解密:
package 密码学;

import java.util.Scanner;

public class jiemi {

public static void main(String[] args) {
		System.out.println("请输入密文:");
		Scanner sc=new Scanner(System.in);
		String s=sc.nextLine();
		System.out.println("请输入密钥:");
		Scanner sc1=new Scanner(System.in);
		int key=sc1.nextInt();
		Decrypt(s,key);//调用Encryption方法
	}

public static void Decrypt(String str, int n) {
	// TODO Auto-generated method stub
	//解密
	int k=Integer.parseInt("-"+n);
	String string="";
	for(int i=0;i='a'&&c<='z')//如果字符串中的某个字符是小写字母
		{
			c+=k%26;//移动key%26位
			if(c<'a')
				c+=26;//向左超界
			if(c>'z')
				c-=26;//向右超界
		}else if(c>='A'&&c<='Z')//如果字符串中的某个字符是大写字母
		{
			c+=k%26;//移动key%26位
			if(c<'A')
				c+=26;//向左超界
			if(c>'Z')
				c-=26;//向右超界
		}
		string +=c;//将解密后的字符连成字符串
	}
	System.out.println("解密后为:"+string);		
}

}
3.破译
package 密码学;

import java.util.Scanner;

public class poyi {

public static void main(String[] args) {
		System.out.println("请输入密文:");
		Scanner sc=new Scanner(System.in);
		String s=sc.nextLine();
		for(int key=0;key<26;key++)
		Decrypt(s,key);//调用Encryption方法		
	}

public static void Decrypt(String str, int n) {
	// TODO Auto-generated method stub
	//解密
	int k=Integer.parseInt("-"+n);
	String string="";
	for(int i=0;i='a'&&c<='z')//如果字符串中的某个字符是小写字母
		{
			c+=k%26;//移动key%26位
			if(c<'a')
				c+=26;//向左超界
			if(c>'z')
				c-=26;//向右超界
		}else if(c>='A'&&c<='Z')//如果字符串中的某个字符是大写字母
		{
			c+=k%26;//移动key%26位
			if(c<'A')
				c+=26;//向左超界
			if(c>'Z')
				c-=26;//向右超界
		}
		string +=c;//将解密后的字符连成字符串
	}
	System.out.println("解密后为:"+string);			
}

}

你可能感兴趣的:(Java实现凯撒密码加密,解密,破译)