zoukankan      html  css  js  c++  java
  • 20135239益西拉姆第四次实验报告

    北京电子科技学院(BESTI)

    实验报告

    课程:JAVA第四次实验报告

    班  级:

    1352

    姓  名:益西拉姆      

    学  号:20135239

    成  绩:

    /

    指导教师:

     娄嘉鹏

    实验日期:

    2015.06.09

    实验密级:

    /

    预习程度:

    实验时间:1500--1800  

       

    仪器组次:39

    必须/选修:

    选修

    实验序号:04

    实验名称:

    第四次实验

    实验仪器: 

    名称

    型号

    数量

    PC机

    DELL

    1

    实验内容:

    1:编写网络通信程序。(基于TCP

    2:对通信内容使用对称加密算法进行加密。

    3:使用非对称算法分发对称加密中使用的密钥

    4:对通信内容进行摘要计算并验证。

    服务器代码:

    // file nameComputeTCPServer.java

    import java.net.*;

    import java.io.*;

    import java.security.*;

    import java.security.spec.*;

    import javax.crypto.*;

    import javax.crypto.spec.*;

    import javax.crypto.interfaces.*;

    import java.security.interfaces.*;

    import java.math.*;

    public class ComputeTCPServer{

            public static void main(String srgs[]) throws Exception {

            ServerSocket sc = null;

            Socket socket=null;

                try {

    sc= new ServerSocket(4421);//创建服务器套接字

                System.out.println("端口号:" + sc.getLocalPort());

                System.out.println("服务器已经启动...");

                socket = sc.accept();   //等待客户端连接

                System.out.println("已经建立连接");

                    //获得网络输入流对象的引用

                BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));

                    ////获得网络输出流对象的引用

    PrintWriter out=new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);

    String aline2=in.readLine();

    BigInteger c=new BigInteger(aline2);

    FileInputStream f=new FileInputStream("Skey_RSA_priv.dat");

    ObjectInputStream b=new ObjectInputStream(f);

    RSAPrivateKey prk=(RSAPrivateKey)b.readObject( );

    BigInteger d=prk.getPrivateExponent();

    BigInteger n=prk.getModulus();

    //System.out.println("d= "+d);

    //System.out.println("n= "+n);

    BigInteger m=c.modPow(d,n);

    //System.out.println("m= "+m);

    byte[] keykb=m.toByteArray();

    //String aline3=new String(mt,"UTF8");

    //String aline3=parseByte2HexStr(byte buf[]);

    String aline=in.readLine();//读取客户端传送来的数据

    //FileInputStream  f2=new FileInputStream("keykb1.dat");

    //int num2=f2.available();

    //byte[] keykb=new byte[num2];          

    //f2.read(keykb);

    byte[] ctext=parseHexStr2Byte(aline);

    Key k=new  SecretKeySpec(keykb,"DESede");

    Cipher cp=Cipher.getInstance("DESede");

    cp.init(Cipher.DECRYPT_MODE, k);

    byte []ptext=cp.doFinal(ctext);

    String p=new String(ptext,"UTF8");

    System.out.println("从客户端接收到信息为:"+p); //通过网络输出流返回结果给客户端

    /*String aline2=in.readLine();

    BigInteger c=new BigInteger(aline2);

    FileInputStream f=new FileInputStream("Skey_RSA_priv.dat");

    ObjectInputStream b=new ObjectInputStream(f);

    RSAPrivateKey prk=(RSAPrivateKey)b.readObject( );

    BigInteger d=prk.getPrivateExponent();

    BigInteger n=prk.getModulus();

    //System.out.println("d= "+d);

    //System.out.println("n= "+n);

    BigInteger m=c.modPow(d,n);

    //System.out.println("m= "+m);

    byte[] mt=m.toByteArray();

    //String aline3=new String(mt,"UTF8");*/

    String aline3=in.readLine();

    String x=p;

    MessageDigest m2=MessageDigest.getInstance("MD5");

             m2.update(x.getBytes( ));

             byte a[ ]=m2.digest( );

             String result="";

             for (int i=0; i<a.length; i++){

                result+=Integer.toHexString((0x000000ff & a[i]) | 

    0xffffff00).substring(6);

         }

             System.out.println(result);

    if(aline3.equals(result)){

    System.out.println("匹配成功");

    }

    out.println("匹配成功");

    out.close();

    in.close();

    sc.close();

                } catch (Exception e) {

                System.out.println(e);

            } 

        }

    public static String parseByte2HexStr(byte buf[]) {  

            StringBuffer sb = new StringBuffer();  

            for (int i = 0; i < buf.length; i++) {  

                String hex = Integer.toHexString(buf[i] & 0xFF);  

                if (hex.length() == 1) {  

                    hex = '0' + hex;  

                }  

                sb.append(hex.toUpperCase());  

            }  

            return sb.toString();  

        }  

    public static byte[] parseHexStr2Byte(String hexStr) {  

            if (hexStr.length() < 1)  

                return null;  

            byte[] result = new byte[hexStr.length()/2];  

            for (int i = 0;i< hexStr.length()/2; i++) {  

                int high = Integer.parseInt(hexStr.substring(i*2, i*2+1 ), 16);  

                int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16);  

                result[i] = (byte) (high * 16 + low);  

            }  

            return result;  

        }  

    }

    客户端代码:

    // file nameComputeTCPClient.java

    import java.net.*;

    import java.io.*;

    import java.security.*;

    import javax.crypto.*;

    import javax.crypto.spec.*;

    import java.security.spec.*;

    import javax.crypto.interfaces.*;

    import java.security.interfaces.*;

    import java.math.*;

    public class ComputeTCPClient {

        public static void main(String srgs[]) throws Exception{

          try {

    KeyGenerator kg=KeyGenerator.getInstance("DESede");//方法getInstance( )的参数为字符串类型,指定加密算法的名称

    kg.init(168); //该步骤一般指定密钥的长度

    SecretKey k=kg.generateKey( );//生成密钥

    byte[] ptext2=k.getEncoded();

    //String kstr=parseByte2HexStr(kb);

               //创建连接特定服务器的指定端口的Socket对象

    //Socket socket = new Socket("192.168.155.4", 4421);

    Socket socket = new Socket("10.43.52.73", 4421);

                //获得从服务器端来的网络输入流

                BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));

                //获得从客户端向服务器端输出数据的网络输出流

                PrintWriter out=new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);

                //创建键盘输入流,以便客户端从键盘上输入信息

                BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));

    FileInputStream f3=new FileInputStream("Skey_RSA_pub.dat");

    ObjectInputStream b2=new ObjectInputStream(f3);

    RSAPublicKey  pbk=(RSAPublicKey)b2.readObject( );

    BigInteger e=pbk.getPublicExponent();

    BigInteger n=pbk.getModulus();

    //System.out.println("e= "+e);

    //System.out.println("n= "+n);

    //byte ptext2[]=kstr.getBytes("UTF8");

    BigInteger m=new BigInteger(ptext2);

    BigInteger c=m.modPow(e,n);

    //System.out.println("c= "+c);

    String cs=c.toString( );

                out.println(cs);  //通过网络传送到服务器

                System.out.print("请输入待发送的数据:");  

                String s=stdin.readLine(); //从键盘读入待发送的数据

    Cipher cp=Cipher.getInstance("DESede");

    cp.init(Cipher.ENCRYPT_MODE, k);

    byte ptext[]=s.getBytes("UTF8");

    byte ctext[]=cp.doFinal(ptext);

    String str=parseByte2HexStr(ctext);

                out.println(str);  //通过网络传送到服务器

    String x=s;

    MessageDigest m2=MessageDigest.getInstance("MD5");

    m2.update(x.getBytes( ));

    byte a[ ]=m2.digest( );

    String result="";

    for (int i=0; i<a.length; i++){

                result+=Integer.toHexString((0x000000ff & a[i]) | 

    0xffffff00).substring(6);

    }

    System.out.println(result);

    out.println(result);

    /*s=result;

    FileInputStream f3=new FileInputStream("Skey_RSA_pub.dat");

    ObjectInputStream b2=new ObjectInputStream(f3);

    RSAPublicKey  pbk=(RSAPublicKey)b2.readObject( );

    BigInteger e=pbk.getPublicExponent();

    BigInteger n=pbk.getModulus();

    //System.out.println("e= "+e);

    //System.out.println("n= "+n);

    byte ptext2[]=s.getBytes("UTF8");

    BigInteger m=new BigInteger(ptext2);

    BigInteger c=m.modPow(e,n);

    //System.out.println("c= "+c);

    String cs=c.toString( );

                out.println(cs);  //通过网络传送到服务器*/

                str=in.readLine();//从网络输入流读取结果

                System.out.println( "从服务器接收到的结果为:"+str); //输出服务器返回的结果

    }

            catch (Exception e) {

                System.out.println(e);

            }

    finally{

    //stdin.close();

    //in.close();

    //out.close();

    //socket.close();

    }

         }

     public static String parseByte2HexStr(byte buf[]) {  

            StringBuffer sb = new StringBuffer();  

            for (int i = 0; i < buf.length; i++) {  

                String hex = Integer.toHexString(buf[i] & 0xFF);  

                if (hex.length() == 1) {  

                    hex = '0' + hex;  

                }  

                sb.append(hex.toUpperCase());  

            }  

            return sb.toString();  

        }  

    public static byte[] parseHexStr2Byte(String hexStr) {  

            if (hexStr.length() < 1)  

                return null;  

            byte[] result = new byte[hexStr.length()/2];  

            for (int i = 0;i< hexStr.length()/2; i++) {  

                int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16);  

                int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16);  

                result[i] = (byte) (high * 16 + low);  

            }  

            return result;  

        }  

    }

    实验结果截图:

     

    ;实验中遇到的问题及其解决办法:

    不知道ip地址怎么看。

    之后问了同学才知道可以直接用命令行来实现。就是输入ipconfig.

    就可以看了。

    三:实验体会:

    步骤

    耗时(min

    百分比

    需求分析

    25

    10%

    设计

    20

    19%

    代码实现

    29

    20%

    测试

    10

    17%

    分析总结

    16

    16%

  • 相关阅读:
    Flowable学习笔记(二、BPMN 2.0-基础 )
    Flowable学习笔记(一、入门)
    只有程序员才懂的幽默
    Navicat自动备份数据库
    两个原因导致Spring @Autowired注入的组件为空
    设计模式—— 十二 :代理模式
    设计模式—— 十 一:建造者模式
    SpringBoot学习笔记(十一:使用MongoDB存储文件 )
    Swagger API文档集中化注册管理
    Spring Boot2从入门到实战:集成AOPLog来记录接口访问日志
  • 原文地址:https://www.cnblogs.com/20135239-yxlm/p/4572809.html
Copyright © 2011-2022 走看看