文件名称:src

  • 所属分类:
  • 系统编程
  • 资源属性:
  • [Java] [源码]
  • 上传时间:
  • 2014-06-17
  • 文件大小:
  • 2kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • 杨*
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

实习三 基于RSA的公钥加密

一、实习目的

1、  理解公钥密码算法,熟悉常有的密码算法:RSA、椭圆曲线密码体制

2、  以RSA加密算法为例,掌握公钥密码算法加解密过程的实现。

二、实习内容

以RSA为例,利用java中的相关类实现对指定字符串的加解密。

1、  生成公钥密钥对

(1)利用java中的KeypairGenerator类创建公钥密钥对,利用KeypairGenerator的静态方法getInstance()获得KeypairGenerator类型的对象,所需参数为加密算法的名称RSA。

KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA")

(2)利用KeyPairGenerator类的genKeyPair()方法返回生成的密钥对:

KeyPair kp = kpg.genKeyPair()

(3)返回此密钥对的公钥组件的引用和私钥组件的引用

PublicKey pbkey = kp.getPublic()

PrivateKey prkey = kp.getPrivate()

(4)将生成的公钥写入文件Skey_RSA_pub.dat

FileOutputStream f1 = new FileOutputStream("Skey_RSA_pub.dat")

ObjectOutputStream b1 = new ObjectOutputStream(f1)

b1.writeObject(pbkey)

用同样的方法将私钥写入文件Skey_RSA_pri.dat

-Internship RSA public key encryption based on three

An internship purpose

An understanding of public key cryptography algorithm, familiar with common cryptographic algorithms: RSA, elliptic curve cryptography

2, RSA encryption algorithm, for example, public key cryptography algorithm to achieve master encryption and decryption process.

Second, the practical content

  In RSA, for example, the use of java in the relevant class implements the specified string encryption and decryption.

1, generates a public key pair

(1) the use of java class in KeypairGenerator create a public key pair using KeypairGenerator static method getInstance () to get the object KeypairGenerator type parameters required for the encryption algorithm name RSA.

KeyPairGenerator kpg = KeyPairGenerator.getInstance ("RSA")

(2) the use of genKeyPair KeyPairGenerator class () method returns the generated key pair:

KeyPair kp = kpg.genKeyPair ()

References (3) Returns the public key component of this key an
(系统自动生成,下载前可以参看下载内容)

下载文件列表





src\Dec_RSA.java

...\Enc_RSA.java

...\Skey_RSA.java

src

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org