/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package SS;
import javax.swing.JOptionPane;
/**
*
* @author David
*/
public class DES {
public static void main(String args[])
{
int i;
DesKey key;
key= new DesKey();
String s;
s=JOptionPane.showInputDialog(null,"Enter the number '0' for Default assumtion or '1' for if u want to enter the values for KEY");
//Do u want to enter the key or u want program to allot its own key ...If yes press YES or NO");
if(Integer.parseInt(s)==1)
{
key.enterkey();
}
else
{
key.getkey();
}
key.pc1();
key.subkeys();
key.putkey();
DesKey ptext;
ptext=new DesKey();
s=JOptionPane.showInputDialog(null,"Enter the number '0' for Default assumtion or '1' for if u want to enter the values for PLAIN TEXT");
//Do u want to enter the key or u want program to allot its own key ...If yes press YES or NO");
if(Integer.parseInt(s)==1)
{
ptext.entertext();
}
else
{
ptext.gettext();
}
System.out.println("\n\tAfter calcutating the Initial permutation of Encrypted message we get :\n");
ptext.ip();
for(i=1;i<17;i++)
{
ptext.Ebit();
ptext.xorwk(i,key);
ptext.sbox();
ptext.xorswap();
ptext.finl();
System.out.println("Here goes the round no : "+i+" using key no " +i);
}
ptext.swap();
System.out.println("\nThis is the enctrypted message : \n");
ptext.ipin();
System.out.println("\n\n\n\t\tNow Starts the decryption part\n");
System.out.println("\n\tAfter calculating the Initial permutation of Decrypted message we get :\n");
ptext.ip();
int r=1;
for(i=16;i>0;i--)
{
ptext.Ebit();
ptext.xorwk(i,key);
ptext.sbox();
ptext.xorswap();
ptext.finl();
System.out.println("\nHere goes the round no : "+r+" using key no " +i);
r++;
}
ptext.swap();
System.out.println("\nThis is the decrypted message\n");
ptext.ipin();
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
DES.rar_des
共1个文件
java:1个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 2 浏览量
2022-09-24
02:08:28
上传
评论
收藏 803B RAR 举报
温馨提示
des encryption code
资源推荐
资源详情
资源评论
收起资源包目录
DES.rar (1个子文件)
DES.java 2KB
共 1 条
- 1
资源评论
刘良运
- 粉丝: 77
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功