欢迎来到天天文库
浏览记录
ID:12371459
大小:42.00 KB
页数:12页
时间:2018-07-16
《密码学实验报告模板 (字)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、密码学实验报告模板(6000字)院系:计算机科学学院专业:计算机科学与技术年级:08级课程名称:信息安全班级:计科一大班姓名学号:指导教师:孟博2016年11月14日//RSA加密解密packagechp16;import*;import*;import*;import*;publicclassPassword_Test{//用FileInputStream获取公钥//用RSAPublicKey类中的方法获取公钥的参数//用“BigIntegerm=newBigInteger;”来获得明文整数//执行计算publicst
2、aticvoidmain{try{newPassword_Test;Encryption_RSA;}catch{;}}publicPassword_TestthrowsException{//构造方法创建公钥和私钥KeyPairGeneratorkpg=;//生成实现RSA算法的KeyPairGenerator对象。;//初始化确定密钥的大小KeyPairkp=;//生成密钥对PublicKeypbkey=;//创建公钥PrivateKeyprkey=;//创建私钥//保存公钥FileOutputStreamfile1=
3、newFileOutputStream;ObjectOutputStreamob1=newObjectOutputStream;//创建ObjectOutputStream对象;//将指定的对象写入ObjectOutputStream。//保存私钥FileOutputStreamfile2=newFileOutputStream;ObjectOutputStreamob2=newObjectOutputStream;;}publicstaticvoidEncryption_RSAthrowsException{;Stri
4、ngstring=“Iamastudent”;//获取公钥及参数e,nFileInputStreamf_in=newFileInputStream;ObjectInputStreamo_in=newObjectInputStream;RSAPublicKeypbk=o_;BigIntegere=;//返回此公钥的指数BigIntegern=;//返回此公钥的模;;//明文bitbytebt[]=;BigIntegerbit=newBigInteger;//计算密文c,打印BigIntegermi=;//生成密文;//打印
5、密文//保存密文Stringsave=;BufferedWriterout=newBufferedWriter)););;Decrypt_RSA;}publicstaticvoidDecrypt_RSAthrowsException{;//读取密文BufferedReaderin=newBufferedReader));Stringctext=;BigIntegermi=newBigInteger;//读取私钥FileInputStreamf=newFileInputStream;ObjectInputStreamb=n
6、ewObjectInputStream;RSAPrivateKeyprk=;BigIntegerd=;//返回此私钥的指数BigIntegern=;//返回此私钥的模;;BigIntegerjie=;//进行解密操作;//显示解密结果byte[]mt=;;for{mt[i]);}}}MD5加密packagemd5;import*;/***MD5算法的JavaBeanMD5类实现了RSADataSecurity,Inc.在提交给IETF的RFC1321中的MD5*message-digest算法。*/publicclass
7、MD5{staticfinalbyte[]PADDING={-128,0,0,0,0,0,0,0,0,0,0,staticfinalintS41=6;staticfinalintS42=10;staticfinalintS43=15;staticfinalintS44=21;staticfinalintS31=4;staticfinalintS32=11;staticfinalintS33=16;staticfinalintS34=23;staticfinalintS21=5;staticfinalintS22=9;st
8、aticfinalintS23=14;staticfinalintS24=20;//下面这些S11-S44实际上是一个4*4的矩阵,在原始的C实现中是用#define实现的,//final是表示了只读,切能在同一个进程空间内的多个Instance间共享staticfinalintS11=7;staticfinalin
此文档下载收益归作者所有