20145104张家明实验五
北京電子科技學(xué)院(BESTI)
實(shí) 驗(yàn) 報(bào) 告
課程:Java程序與設(shè)計(jì) 班級(jí):1451
姓名:張家明 馮文華
學(xué)號(hào):2015104 20145103
成績(jī): 指導(dǎo)教師:婁嘉鵬 實(shí)驗(yàn)日期:
實(shí)驗(yàn)密級(jí): 預(yù)習(xí)程度: 實(shí)驗(yàn)時(shí)間:15:30-18:00
儀器組次: 必修/選修:選修 實(shí)驗(yàn)序號(hào):5
實(shí)驗(yàn)名稱:Java網(wǎng)絡(luò)編程及安全
實(shí)驗(yàn)?zāi)康呐c要求:結(jié)對(duì)編程,實(shí)現(xiàn)客戶端和服務(wù)器之間數(shù)據(jù)的發(fā)送與接收,實(shí)現(xiàn)加解密和驗(yàn)證Hash函數(shù)值。
【實(shí)驗(yàn)內(nèi)容】
1.用書上的TCP代碼,實(shí)現(xiàn)服務(wù)器與客戶端。
2.客戶端與服務(wù)器連接
3.客戶端中輸入明文,利用DES算法加密,DES的秘鑰用RSA公鑰密碼中服務(wù)器的公鑰加密,計(jì)算明文的Hash函數(shù)值,一起傳送給客戶端
4.客戶端用RSA公鑰密碼中服務(wù)器的私鑰解密DES的,秘鑰,用秘鑰對(duì)密文進(jìn)行解密,得出明文。計(jì)算求得明文的Hash函數(shù)值,檢查是否與傳送過來的一致,如果一直,則表示匹配成功。
【實(shí)驗(yàn)步驟】
我和20145103馮文華結(jié)對(duì)編程,我設(shè)計(jì)服務(wù)器的部分。
馮文華的博客園主頁: http://www.cnblogs.com/20145103fwh/
首先建立一個(gè)端口號(hào)啟動(dòng)服務(wù)器并與客戶端相連,獲得網(wǎng)絡(luò)輸入流與輸出流對(duì)象的引用
接著使用服務(wù)器端RSA的私鑰對(duì)DES的密鑰進(jìn)行解密,對(duì)秘鑰進(jìn)行解密之后使用DES對(duì)密文進(jìn)行解密
然后計(jì)算解密后的hash值來確定解密是否正確
以上用到的加密算法、秘鑰、Hash函數(shù)計(jì)算過程均利用的老師提供的代碼。
在拋出異常部分,因?yàn)槔^承的是Exception類,所以直接輸出拋出的異常。
代碼寫好后,先運(yùn)行服務(wù)器,再運(yùn)行客戶端,顯示“服務(wù)器已經(jīng)啟動(dòng)后”啟動(dòng)客戶端,,連接成功會(huì)顯示“已經(jīng)建立連接”,然后就可以從客戶端輸入數(shù)據(jù)發(fā)送到服務(wù)器了。
package nine; 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(8080);//創(chuàng)建服務(wù)器套接字 System.out.println("端口號(hào):" + sc.getLocalPort()); System.out.println("服務(wù)器已經(jīng)啟動(dòng)..."); socket = sc.accept(); //等待客戶端連接 System.out.println("已經(jīng)建立連接");//獲得網(wǎng)絡(luò)輸入流對(duì)象的引用 BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));//獲得網(wǎng)絡(luò)輸出流對(duì)象的引用 PrintWriter out=new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);//使用服務(wù)器端RSA的私鑰對(duì)DES的密鑰進(jìn)行解密 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(); BigInteger m=c.modPow(d,n); byte[] keykb=m.toByteArray();//使用DES對(duì)密文進(jìn)行解密 String aline=in.readLine();//讀取客戶端傳送來的數(shù)據(jù) 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); //通過網(wǎng)絡(luò)輸出流返回結(jié)果給客戶端//使用Hash函數(shù)檢測(cè)明文完整性 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 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; } 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(); } }轉(zhuǎn)載于:https://www.cnblogs.com/wodedadao/p/5472371.html
總結(jié)
以上是生活随笔為你收集整理的20145104张家明实验五的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 农行随薪贷是否可以提前还款 办理要满足
- 下一篇: php中curl类常用方法封装和详解