云题海 - 专业文章范例文档资料分享平台

当前位置:首页 > RSA的java实现

RSA的java实现

  • 62 次阅读
  • 3 次下载
  • 2026/4/27 4:32:25

Java语言是一种面向对象的程序设计语言,可以适应各种环境要求,是目前主要的面向对象的编程语言,下面利用Java进行RSA算法的实现。

主要代码

//RSA加密解密的图形界面 import java.awt.Color;

import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.security.Key; import java.security.KeyPair;

import java.security.KeyPairGenerator; import java.security.SecureRandom;

import javax.crypto.Cipher; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTextField;

import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder;

public class RSA_Encrypt {

/** 指定加密算法为DESede */

private static String ALGORITHM = \ /** 指定key的大小 */

private static int KEYSIZE = 1024; /** 指定公钥存放文件 */

private static String PUBLIC_KEY_FILE = \ /** 指定私钥存放文件 */

private static String PRIVATE_KEY_FILE = \

/**

* 生成密钥对 */

private static void generateKeyPair() throws Exception { /** RSA算法要求有一个可信任的随机数源 */ SecureRandom sr = new SecureRandom();

/** 为RSA算法创建一个KeyPairGenerator对象 */

KeyPairGenerator kpg = KeyPairGenerator.getInstance(ALGORITHM); /** 利用上面的随机数据源初始化这个KeyPairGenerator对象 */ kpg.initialize(KEYSIZE, sr); /** 生成密匙对 */

KeyPair kp = kpg.generateKeyPair(); /** 得到公钥 */

Key publicKey = kp.getPublic(); /** 得到私钥 */

Key privateKey = kp.getPrivate();

/** 用对象流将生成的密钥写入文件 */ ObjectOutputStream oos1 = new FileOutputStream(PUBLIC_KEY_FILE)); ObjectOutputStream oos2 = new FileOutputStream(PRIVATE_KEY_FILE)); oos1.writeObject(publicKey); oos2.writeObject(privateKey);

/** 清空缓存,关闭文件输出流 */ oos1.close(); oos2.close(); }

/**

* 加密方法 source:源数据 */

public static String encrypt(String source) throws Exception { generateKeyPair();

/** 将文件中的公钥对象读出 */ ObjectInputStream ois = new FileInputStream(PUBLIC_KEY_FILE)); Key key = (Key) ois.readObject(); ois.close();

/** 得到Cipher对象来实现对源数据的RSA加密 */ Cipher cipher = Cipher.getInstance(ALGORITHM); cipher.init(Cipher.ENCRYPT_MODE, key); byte[] b = source.getBytes(); /** 执行加密操作 */

byte[] b1 = cipher.doFinal(b);

BASE64Encoder encoder = new BASE64Encoder(); return encoder.encode(b1); }

/**

* 解密算法 cryptograph:密文 */

ObjectOutputStream(new ObjectOutputStream(new ObjectInputStream(new public static String decrypt(String cryptograph) throws Exception { /** 将文件中的私钥对象读出 */ ObjectInputStream ois = new ObjectInputStream(new FileInputStream(PRIVATE_KEY_FILE)); Key key = (Key) ois.readObject();

/** 得到Cipher对象对已用公钥加密的数据进行RSA解密 */ Cipher cipher = Cipher.getInstance(ALGORITHM); cipher.init(Cipher.DECRYPT_MODE, key);

BASE64Decoder decoder = new BASE64Decoder(); byte[] b1 = decoder.decodeBuffer(cryptograph); /** 执行解密操作 */

byte[] b = cipher.doFinal(b1); return new String(b); }

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

JFrame frame = new JFrame(\加密解密\ // Button名称

JButton button1 = new JButton(\加密\ JButton button2 = new JButton(\解密\ // JTextField名称

final JTextField content = new JTextField(); final JTextField pass = new JTextField(); final JTextField dpass = new JTextField();

// JLabel

JLabel view = new JLabel(\明文\ view.setFont(new java.awt.Font(\明文\ view.setOpaque(true);

view.setBackground(Color.WHITE); view.setForeground(Color.BLACK);

// 画布布局

JPanel contentPane = new JPanel(); contentPane.add(button1); contentPane.add(button2); contentPane.add(content); contentPane.add(pass); contentPane.add(dpass); contentPane.add(view);

frame.setContentPane(contentPane); contentPane.setLayout(null);

// 大小设置

view.setBounds(250, 0, 80, 30); content.setBounds(50, 0, 200, 30); pass.setBounds(50, 50, 200, 30); button1.setBounds(250, 50, 80, 30); dpass.setBounds(50, 100, 200, 30); button2.setBounds(250, 100, 80, 30); frame.setSize(400, 300); frame.setVisible(true);

button1.addActionListener(new ActionListener() {

@Override

public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub String str1 = content.getText().toString(); try {

pass.setText(encrypt(str1)); } catch (Exception e1) {

// TODO Auto-generated catch block e1.printStackTrace(); } } });

button2.addActionListener(new ActionListener() {

@Override

public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub String str2 = content.getText().toString(); try {

dpass.setText(str2); } catch (Exception e1) {

// TODO Auto-generated catch block e1.printStackTrace(); } } });

} }

程序运行结果

搜索更多关于: RSA的java实现 的文档
  • 收藏
  • 违规举报
  • 版权认领
下载文档10.00 元 加入VIP免费下载
推荐下载
本文作者:...

共分享92篇相关文档

文档简介:

Java语言是一种面向对象的程序设计语言,可以适应各种环境要求,是目前主要的面向对象的编程语言,下面利用Java进行RSA算法的实现。 主要代码 //RSA加密解密的图形界面 import java.awt.Color; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.security.Key; import java.security.KeyPair;

× 游客快捷下载通道(下载后可以自由复制和排版)
单篇付费下载
限时特价:10 元/份 原价:20元
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219
Copyright © 云题海 All Rights Reserved. 苏ICP备16052595号-3 网站地图 客服QQ:370150219 邮箱:370150219@qq.com