Java实现RSA加密算法

栏目: 编程工具 · 发布时间: 5年前

内容简介:首先创建然后初始化密钥对的长度,最低长度512位,并且长度不能低于明文的长度利用

生成密钥对

首先创建 KeyPairGenerator 类的对象,用于生成公钥和私钥对

// 生成公钥和私钥对,基于RSA算法生成对象
KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("RSA");

然后初始化密钥对的长度,最低长度512位,并且长度不能低于明文的长度

// 初始化密钥大小为1024位
keyPairGen.initialize(1024);

利用 keyPairGen 对象生成密钥对,保存在 KeyPair 类中

KeyPair keyPair = keyPairGen.generateKeyPair();

keyPair 类中获取公钥和私钥

RSAPublicKey publicKey = (RSAPublicKey) keyPair.getPublic();
RSAPrivateKey privateKey = (RSAPrivateKey) keyPair.getPrivate();

加密(encrypt)

protected static byte[] encrypt(RSAPublicKey publicKey, byte[] srcBytes) {
    if (publicKey != null) {
        try {
            // Cipher负责完成加密或解密工作,基于RSA
            Cipher cipher = Cipher.getInstance(ALGORITHM);

            // 根据公钥,对Cipher对象进行初始化
            cipher.init(Cipher.ENCRYPT_MODE, publicKey);

            // 加密,结果保存进resultBytes,并返回
            byte[] resultBytes = cipher.doFinal(srcBytes);
            return resultBytes;
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    return null;
}

解密(decrypt)

protected static byte[] encrypt(RSAPublicKey publicKey, byte[] srcBytes) {
    if (publicKey != null) {
        try {
            // Cipher负责完成加密或解密工作,基于RSA
            Cipher cipher = Cipher.getInstance("RSA");

            // 根据公钥,对Cipher对象进行初始化
            cipher.init(Cipher.ENCRYPT_MODE, publicKey);

            // 加密,结果保存进resultBytes,并返回
            byte[] resultBytes = cipher.doFinal(srcBytes);
            return resultBytes;
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    return null;
}

完整代码

import java.security.*;
import java.security.interfaces.*;
import javax.crypto.*;

public class RSA {

    private RSAPublicKey publicKey;
    private RSAPrivateKey privateKey;
    private byte[] resultBytes;
    private final static String ALGORITHM = "RSA";

    public RSA() {
        try {
            String message = "你好,我很喜欢加密算法";
            System.out.println("明文是:" + message);
            // 生成公钥和私钥对,基于RSA算法生成对象
            KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance(ALGORITHM);

            // 初始化密钥对生成器,密钥大小为1024位
            keyPairGen.initialize(1024);

            // 生成一个密钥对,保存在keyPair中
            KeyPair keyPair = keyPairGen.generateKeyPair();

            // 得到公钥和私钥
            publicKey = (RSAPublicKey) keyPair.getPublic();
            privateKey = (RSAPrivateKey) keyPair.getPrivate();

            // 用公钥加密
            byte[] srcBytes = message.getBytes();
            resultBytes = RSA.encrypt(publicKey, srcBytes);
            String result = new String(resultBytes);
            System.out.println("用公钥加密后密文是:" + result);

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    protected static byte[] encrypt(RSAPublicKey publicKey, byte[] srcBytes) {
        if (publicKey != null) {
            try {
                // Cipher负责完成加密或解密工作,基于RSA
                Cipher cipher = Cipher.getInstance(ALGORITHM);

                // 根据公钥,对Cipher对象进行初始化
                cipher.init(Cipher.ENCRYPT_MODE, publicKey);

                // 加密,结果保存进resultBytes,并返回
                byte[] resultBytes = cipher.doFinal(srcBytes);
                return resultBytes;
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return null;
    }

    protected byte[] decrypt(RSAPrivateKey privateKey, byte[] encBytes) {
        if (privateKey != null) {
            try {
                Cipher cipher = Cipher.getInstance(ALGORITHM);

                // 根据私钥对Cipher对象进行初始化
                cipher.init(Cipher.DECRYPT_MODE, privateKey);

                // 解密并将结果保存进resultBytes
                byte[] decBytes = cipher.doFinal(encBytes);
                return decBytes;
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return null;
    }

    public static void main(String[] args) {
        long rsaStart = System.currentTimeMillis();
        RSA rsa = new RSA();
        byte[] decBytes = rsa.decrypt(rsa.privateKey, rsa.resultBytes);
        String dec = new String(decBytes);
        long rsaEnd = System.currentTimeMillis();
        System.out.println("用私钥解密后的结果是:" + dec);
        System.out.println("共计用时:" + (rsaEnd - rsaStart));
    }
}

运行结果见下面的GIF:

Java实现RSA加密算法

以上所述就是小编给大家介绍的《Java实现RSA加密算法》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

互联网产品运营:产品经理的10堂精英课

互联网产品运营:产品经理的10堂精英课

丁华、聂嵘海、王晶 / 电子工业出版社 / 2017-5 / 59

《互联网产品运营:产品经理的10堂精英课》共有10章,前9章分别从互联网产品运营的9个点入手,最后一章辅以案例,分析当下市场热门产品的运营模式。 第1章点明在运营产品之前需要经过缜密的策划,这样才能有明确的运营方向;第2章讲述产品运营的定位,有了准确的定位,运营才不会走偏;第3章描述用户运营,用户是一款产品的根本,没有用户,产品就是死的;第4章讲述内容运营的技巧,产品内容要怎么运营才能受到用......一起来看看 《互联网产品运营:产品经理的10堂精英课》 这本书的介绍吧!

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具