public class RSAUtil { /** * 填充方式 */ public static enum PADDING { NoPadding, PKCS1Padding }; /** * 算法 */ public static final String KEY_ALGORITHM = "RSA"; /** * 算法/工作模式 */ public final static String CHIPER_ALGORITHM = "RSA/ECB/"; /** * 密钥长度 */ public static final int KEY_SIZE = 1024; /** * 65537 or 0x010001 */ public static final byte[] PUBLIC_EXPONENT = { 1, 0, 1 }; /** * 生成密钥对 * * @return KeyPair */ public static KeyPair generateKeyPair() { try { KeyPairGenerator keyPairGen = KeyPairGenerator .getInstance(KEY_ALGORITHM); keyPairGen.initialize(KEY_SIZE, new SecureRandom()); KeyPair keyPair = keyPairGen.genKeyPair(); return keyPair; } catch (Exception e) { throw new RuntimeException("Error when init key pair, errmsg: " + e.getMessage(), e); } } /** * 生成公钥 * * @param modulus * @param publicEXPonent * @return RSAPublicKey */ private static RSAPublicKey generateRSAPublicKey(byte[] modulus, byte[] publicExponent) { try { RSAPublicKeySpec pubKeySpec = new RSAPublicKeySpec(new BigInteger( 1, modulus), new BigInteger(1, publicExponent)); KeyFactory keyFac = KeyFactory.getInstance(KEY_ALGORITHM); return (RSAPublicKey) keyFac.generatePublic(pubKeySpec); } catch (Exception e) { throw new RuntimeException( "Error when generate rsaPubblicKey, errmsg: " + e.getMessage(), e); } } /** * 生成私钥 * * @param modulus * @param privateExponent * @return RSAPrivateKey */ private static RSAPrivateKey generateRSAPrivateKey(byte[] modulus, byte[] privateExponent) { try { KeyFactory keyFac = KeyFactory.getInstance(KEY_ALGORITHM); RSAPrivateKeySpec priKeySpec = new RSAPrivateKeySpec( new BigInteger(1, modulus), new BigInteger(1, privateExponent)); return (RSAPrivateKey) keyFac.generatePrivate(priKeySpec); } catch (Exception e) { throw new RuntimeException( "Error when generate rsaPrivateKey, errmsg: " + e.getMessage(), e); } } /** * 加密 * * @param key * 加密的密钥 * @param data * 待加密的明文数据 * @return 加密后的数据 */ private static byte[] encrypt(Key key, byte[] data,PADDING padding) { try { Cipher cipher = Cipher.getInstance(CHIPER_ALGORITHM+(padding==null?PADDING.NoPadding:padding)); cipher.init(Cipher.ENCRYPT_MODE, key); return cipher.doFinal(data); } catch (Exception e) { throw new RuntimeException("Error when encrypt data, errmsg: " + e.getMessage(), e); } } /** * 公钥加密 * * @param publicKey * @param data * @return */ public static byte[] encryptByPublicKey(byte[] publicKey, byte[] data,PADDING padding) { // 得到公钥 RSAPublicKey key = generateRSAPublicKey(publicKey, PUBLIC_EXPONENT); // 加密 return encrypt(key, data,padding); } /** * 私钥加密 * * @param publicKey * @param privateKey * @param data * @return */ public static byte[] encryptByPrivateKey(byte[] publicKey, byte[] privateKey, byte[] data,PADDING padding) { // 得到私钥 RSAPrivateKey key = generateRSAPrivateKey(publicKey, privateKey); // 加密 return encrypt(key, data,padding); } /** * 解密 * * @param key * 解密的密钥 * @param data * 已经加密的数据 * @return 解密后的明文 */ private static byte[] decrypt(Key key, byte[] data,PADDING padding) { try { Cipher cipher = Cipher.getInstance(CHIPER_ALGORITHM+(padding==null?PADDING.NoPadding:padding)); cipher.init(Cipher.DECRYPT_MODE, key); return cipher.doFinal(data); } catch (Exception e) { throw new RuntimeException("Error when decrypt data, errmsg: " + e.getMessage(), e); } } /** * 公钥解密 * * @param publicKey * @param data * @ret公钥urn */ public static byte[] decryptByPublicKey(byte[] publicKey, byte[] data,PADDING padding) { // 得到公钥 RSAPublicKey key = generateRSAPublicKey(publicKey, PUBLIC_EXPONENT); // 解密 return decrypt(key, data,padding); } /** * 私钥解密 * * @param publicKey * @param privateKey * @param data * @return */ public static byte[] decryptByPrivateKey(byte[] publicKey, byte[] privateKey, byte[] data,PADDING padding) { // 得到私钥 RSAPrivateKey key = generateRSAPrivateKey(publicKey, privateKey); // 解密 return decrypt(key, data,padding); }
相关推荐
RSA工具类,囊括了 生成密钥对、私钥解密、公钥加密、私钥签名、公钥验证的方法,并且其中有例子,可直接运行。
总结,Java RSA工具类是一个强大的加密工具,适用于各种安全需求。通过学习和实践,开发者能够熟练地在Java应用中集成RSA,提升系统安全性。这个资料包中的案例涵盖了RSA的基本操作,可以帮助开发者深入理解并掌握这...
### Java安全算法RSA工具类详解 #### 一、引言 在网络安全领域,RSA是一种广泛使用的非对称加密算法,其安全性基于大整数分解问题的困难性。本篇文章将详细解析一个Java环境下实现RSA加密功能的工具类,并对其实现...
RSA为最常用的一种非对称方式的算法,这次封装的Utils类完成了公钥加密、私钥解密、私钥加签、公钥验签四种常用方法。
设计到的方法如下: DigitalSign init getInstance SignMsgByRelativePath SignMsgByInputStream signMsgByAbsolutePath verifyMsgByInputSteam verifyMsgByAbsolutePath verifyMsgByRelativePath ...
在这个C# RSA工具中,我们可以看到以下几个关键文件: 1. `MainForm.Designer.cs` 和 `MainForm.cs`:这是用户界面(UI)的设计和实现,包含用户与程序交互的控件和逻辑。 2. `Program.cs`:这是程序的主入口点,...
以下是一个简单的RSA加密解密工具类的实现: ```java import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.PrivateKey; import java.security.PublicKey; import java....
本文将详细介绍Java和Android平台上常用的两种加密算法:RSA和AES,以及如何使用它们的通用工具类。 首先,RSA是一种非对称加密算法,由Ron Rivest、Adi Shamir和Leonard Adleman在1977年提出。它基于大数因子分解...
例如,一个RSA工具类可能包含生成公钥/私钥对、加密/解密数据的方法;AES工具类则提供初始化向量(IV)的生成、密钥的设置、数据的加密/解密等功能。这些工具类应该设计成易于使用且安全的,避免常见的加密漏洞,如...
是RSA工具类,包括分段加密、分段解密、公私钥对生成,是一份完整的工具类。
RSA非对称加密前端工具类 用于网络传输中数据加密
项目中使用过的一个rsa非对称加密类,用着很不错 ,需要注意的是里边的密钥长度最小是128,不能再小了,还有里边用到了base64的编码,我们用的是jdk 1.8自带的工具类,如果要用的童靴的项目是不jdk 1.8的项目也可以...
RSA工具类可能包含: 1. `generateRSAKeyPair()`: 生成一对RSA密钥。 2. `encryptRSA(plaintext, publicKey)`: 使用公钥加密明文。 3. `decryptRSA(ciphertext, privateKey)`: 使用私钥解密密文。 在实际使用时,...
RSA加密工具类
在"JAVA中RSA加密解密工具类加强版"这篇博客中,作者提供了一个加强版的RSA工具类,旨在简化RSA操作并提高效率。这个工具类通常包含以下功能: 1. **密钥对生成**:使用`java.security.KeyPairGenerator`类生成RSA...
微信小程序能用RSA分段加解密工具类。直接复制到你的工程下就能用
RSA工具(来源于网络),此工具用着比较顺手,详细情况及使用请看:http://blog.csdn.net/yxstars/article/details/38443937
这个Java实现的RSA工具类提供了生成密钥对、公钥加密和私钥解密的功能,对于理解和使用RSA算法非常有帮助。下面将详细介绍这些功能以及相关知识点。 首先,RSA算法基于两个大素数的乘积难以因式分解这一数学难题。...
非常实用的rsa加解密工具类,加签验签,拿过去就能用,包含测试代码