import java.util.Scanner;
成都创新互联长期为上千客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为内丘企业提供专业的网站制作、成都网站制作,内丘网站改版等技术服务。拥有10余年丰富建站经验和众多成功案例,为您定制开发。
public class Caeser {
private String table; // 定义密钥字母表
private int key; // 定义密钥key
public Caeser(String table, int key) {
// 根据不同的字母表和不同的密钥生成一个新的凯撒算法,达到通用的目的
super();
this.table = table;
this.key = key;
}
public String encrypt(String from) {
//凯撒加密算法,传入明文字符串,返回一个密文字符串
String to = "";
for (int i = 0; i from.length(); i++) {
to += table.charAt((table.indexOf(from.charAt(i))+key)%table.length());
}
return to;
}
public static void main(String[] args) {
Caeser caeser = new Caeser("abcdefghijklmnopqrstuvwxyz", 3);
Scanner scanner = new Scanner(System.in);
System.out.println("请输入要加密的字符串");
String str =scanner.nextLine(); //输入字符串 security
String result = caeser.encrypt(str); //调用加密方法进行加密
System.out.print(result); // 可得结果 vhfxulwb
}
}
import java.*;
public class Practise {
public static void main(String[] args) {
String P = new String();// 明文
String K = new String();// 密钥
String C = new String();// 密文
short LR=-1;//间隔的方向,向左为-1,向右为1
P = "benrencainiaoyizhi";
K = "P";
C = "QTCGTCRPXCXPDNXOWX";
System.out.println("明文:"+P);
System.out.println("密钥:"+K);
System.out.println("密文:"+C+"\n");
CaesarCode caesar=new CaesarCode();
LR=1;
System.out.println("加密:"+caesar.encrypt(P, K, LR));
LR=-1;
System.out.println("解密:"+caesar.decrypt(K, C, LR).toLowerCase());
}
}
class CaesarCode {
private char alphabet[] = new char[26];//存储字母表
//加密
protected String encrypt(String P,String K,short LR)
{
int i=0,j=0,n=0;//n是间隔
String C=new String();//密文
P=P.toUpperCase();
P=getNewP(P);
K=K.toUpperCase();
n=getN(K);
//将明文转换成密文
for(i=0;iP.length();i++)
{
j=String.valueOf(alphabet).indexOf(P.charAt(i));//获取密文字母在字母表所在的下标
j=(j+n*LR+26)%26;//向左或向右移动n位
C+=(char)(j+65);
}
return C;
}
//解密
protected String decrypt(String K,String C,short LR)
{
int i=0,j=0,n=0;//n是间隔
String P=new String();//明文
K=K.toUpperCase();
C=C.replaceAll(" +"," ");
C=C.toUpperCase();
n=getN(K);
//将密文转换成明文
for(i=0;iC.length();i++)
{
j=String.valueOf(alphabet).indexOf(C.charAt(i));//获取密文字母在字母表所在的下标
j=(j+n*LR+26)%26;//向左或向右移动n位
P+=(char)(j+65);
}
return P;
}
//获取经过处理的明文
private String getNewP(String P)
{
int i=0;
char p[] = P.toCharArray();
for (i = 0; i P.length(); i++) {
if (p[i] 'A' || p[i] 'Z')// 将非字母换成空格
{
p[i] = ' ';
}
}
P = String.valueOf(p);
P = P.replaceAll(" +", "");// 将明文的所有空格去掉
return P;
}
//获取间隔
private int getN(String K)
{
int i=0,n=0;
//生成字母表
for(i=0;i26;i++)
{
alphabet[i]=(char)(i+65);//字母A在ASCII表中的值是065
}
if(isNum(K))
{
n=Integer.parseInt(K);
}
else
{
n=String.valueOf(alphabet).indexOf(K);//当K不是数字时适用
}
return n;
}
//判断密钥是否为数字
private boolean isNum(String K)
{
return K.matches("[0-9]+");//+表示1个或多个(如"3"或"225")
}
}
class Caesar: def __init__(self): a = list('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-!\'"') b = a[3:] + a[:3] self.emap = dict(zip(a,b)) self.dmap = dict(zip(b,a)) def encode(self, text): tmp = [ (x in self.emap and self.emap[x] or x) for x in text ] return ''.join(tmp) def decode(self, text): tmp = [ (x in self.dmap and self.dmap[x] or x) for x in text ] return ''.join(tmp)
不用类也是可以做的,不过看起来有些哆嗦,随便看一下吧,自己再改简单一点
using namespace std;
const int N=20;
void main()
{ int k;
void encipher(char c[],int b);
void decipher(char c[],int b);
char plaintext[N];
cout"Please enter the keywards k(0k26):"endl;
cink;
cout"Please enter the plaintext:"endl;
cinplaintext;
cout"the ciphertext is:";
encipher(plaintext,k);
cout"the plaintext is:";
decipher(plaintext,k);
}
void encipher(char c[],int b)
{
int i;
int a[N];
for(i=0;iN;i++)
a[i]=c[i]; //注:128~255是IBM-PC上专用的,ASCII代码中000-127是标准的,如果是z加20的就会超出128,故先赋给整型,然后再转换过来,
for(i=0;a[i]!='\0'iN;i++)
{
if((a[i]='A'a[i]='Z')||(a[i]='a'a[i]='z'))
{
a[i]=a[i]+b;
if((a[i]'Z'a[i]='Z'+b)||(a[i]'z'))
a[i]=a[i]-26;}
}
for(i=0;iN;i++)
c[i]=a[i];
for(i=0;iN;i++)
coutc[i];
coutendl;
}
void decipher(char c[],int b)
{
int i;
for(i=0;c[i]!='\0'iN;i++)
{
if((c[i]='A'c[i]='Z')||(c[i]='a'c[i]='z'))
{
c[i]=c[i]-b;
if((c[i]='a'-bc[i]'a')||c[i]'A')
c[i]=c[i]+26;}
}
for(i=0;iN;i++)
coutc[i];
}