Java加密算法RSA代碼實(shí)例
這篇文章主要介紹了Java加密算法RSA代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
代碼如下
import javax.crypto.BadPaddingException; import javax.crypto.Cipher; import javax.crypto.IllegalBlockSizeException; import javax.crypto.NoSuchPaddingException; import java.security.*; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAPublicKey; import java.security.spec.InvalidKeySpecException; import java.security.spec.PKCS8EncodedKeySpec; import java.security.spec.X509EncodedKeySpec; import java.util.HashMap; import java.util.Map; public class RSADecrypt { public static Map<String, String> createKeyPair() throws NoSuchAlgorithmException { //創(chuàng)建秘鑰對生成器 KeyPairGenerator generator = KeyPairGenerator.getInstance("rsa"); //初始化密鑰對生成器 generator.initialize(1024); //生成密鑰對 KeyPair keyPair = generator.generateKeyPair(); //獲取公鑰私鑰 RSAPrivateKey privateKey = (RSAPrivateKey) keyPair.getPrivate(); RSAPublicKey publicKey = (RSAPublicKey) keyPair.getPublic(); String publicKeyStr = new String(publicKey.getEncoded()); String privateKeyStr = new String(privateKey.getEncoded()); //公鑰私鑰存放map Map<String, String> keyMap = new HashMap<>(); keyMap.put("publicKey", publicKeyStr); keyMap.put("privateKey", privateKeyStr); return keyMap; } /** * 獲取公鑰 * @param publicKey * @return */ public static RSAPublicKey getPublicKey(String publicKey) throws NoSuchAlgorithmException, InvalidKeySpecException { KeyFactory keyFactory = KeyFactory.getInstance("rsa"); //X509編碼 X509EncodedKeySpec x509EncodedKeySpec = new X509EncodedKeySpec(publicKey.getBytes()); RSAPublicKey rsaPublicKey = (RSAPublicKey) keyFactory.generatePublic(x509EncodedKeySpec); return rsaPublicKey; } /** * 獲取私鑰 * @param privateKey * @return */ public static RSAPrivateKey getPrivateKey(String privateKey) throws NoSuchAlgorithmException, InvalidKeySpecException { KeyFactory keyFactory = KeyFactory.getInstance("rsa"); //PKCS#8編碼 PKCS8EncodedKeySpec pkcs8EncodedKeySpec = new PKCS8EncodedKeySpec(privateKey.getBytes()); RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) keyFactory.generatePrivate(pkcs8EncodedKeySpec); return rsaPrivateKey; } /** * 公鑰加密 * @param src * @param publicKey * @return */ public static byte[] publicEncrypt(String src, RSAPublicKey publicKey) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { Cipher cipher = Cipher.getInstance("rsa"); cipher.init(Cipher.ENCRYPT_MODE,publicKey); byte[] encryptedData = cipher.doFinal(src.getBytes()); return encryptedData; } /** * 私鑰解密 * @param data * @param privateKey * @return * @throws NoSuchPaddingException * @throws NoSuchAlgorithmException * @throws InvalidKeyException * @throws BadPaddingException * @throws IllegalBlockSizeException */ public static String privateDecrypt(byte[] data, RSAPrivateKey privateKey) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { Cipher cipher = Cipher.getInstance("rsa"); cipher.init(Cipher.DECRYPT_MODE,privateKey); byte[] result = cipher.doFinal(data); return new String(result); } public static void main(String[] args) throws NoSuchAlgorithmException, InvalidKeySpecException, IllegalBlockSizeException, InvalidKeyException, BadPaddingException, NoSuchPaddingException { Map<String,String> keyPair = createKeyPair(); RSAPublicKey publicKey = getPublicKey(keyPair.get("publicKey")); RSAPrivateKey privateKey = getPrivateKey(keyPair.get("privateKey")); String str = "hello world"; /** * 公鑰加密,私鑰解密 */ byte[] encryptedData = publicEncrypt(str,publicKey); String result = privateDecrypt(encryptedData, privateKey); /** * 私鑰加密,公鑰解密 */ byte[] encrypted = privateEncrypt(str, privateKey); String source = publicDecrypt(encrypted, publicKey); } /** * 私鑰加密 * @param src * @param privateKey * @return * @throws NoSuchPaddingException * @throws NoSuchAlgorithmException * @throws InvalidKeyException * @throws BadPaddingException * @throws IllegalBlockSizeException */ public static byte[] privateEncrypt(String src, RSAPrivateKey privateKey) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { Cipher cipher = Cipher.getInstance("rsa"); cipher.init(Cipher.DECRYPT_MODE,privateKey); byte[] result = cipher.doFinal(src.getBytes()); return result; } /** * 公鑰解密 * @param data * @param publicKey * @return * @throws NoSuchPaddingException * @throws NoSuchAlgorithmException * @throws InvalidKeyException * @throws BadPaddingException * @throws IllegalBlockSizeException */ public static String publicDecrypt(byte[] data, RSAPublicKey publicKey) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { Cipher cipher = Cipher.getInstance("rsa"); cipher.init(Cipher.DECRYPT_MODE,publicKey); byte[] result = cipher.doFinal(data); return new String(result); } }
上面例子使用密鑰長度1024,如果想使用2048密鑰,只需要在初始化密鑰對生成器做一些變動,其他部分可以復(fù)用。
generator.initialize(2048);
這個例子只是基本常用的RSA加解密,也可加入base64,簽名。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
解決啟用 Spring-Cloud-OpenFeign 配置可刷新項目無法啟動的問題
這篇文章主要介紹了解決啟用 Spring-Cloud-OpenFeign 配置可刷新項目無法啟動的問題,本文重點(diǎn)給大家介紹Spring-Cloud-OpenFeign的原理及問題解決方法,需要的朋友可以參考下2021-10-10關(guān)于Scanner中nextInt()、nextLine()等方法總結(jié)與問題解決
這篇文章主要介紹了關(guān)于Scanner中nextInt()、nextLine()等方法總結(jié)與問題解決,具有很好的參考價值,希望對大家有所幫助。2022-11-11SpringBoot使用validation-api實(shí)現(xiàn)參數(shù)校驗(yàn)的示例
這篇文章主要介紹了SpringBoot使用validation-api實(shí)現(xiàn)參數(shù)校驗(yàn)的示例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-09-09Java組件FileUpload上傳文件實(shí)現(xiàn)代碼
這篇文章主要為大家詳細(xì)介紹了Java組件FileUpload上傳文件實(shí)現(xiàn)代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-06-06Springboot集成Elasticsearch的步驟與相關(guān)功能
ElasticSearch是開源搜索平臺領(lǐng)域的一個新成員,?ElasticSearch是一個基于Lucene構(gòu)建的開源,分布式,RESTful搜索引擎,這篇文章主要給大家介紹了關(guān)于Springboot集成Elasticsearch的相關(guān)資料,需要的朋友可以參考下2021-12-12Spring框架中一個有用的小組件之Spring Retry組件詳解
Spring Retry 是從 Spring batch 中獨(dú)立出來的一個功能,主要實(shí)現(xiàn)了重試和熔斷,對于那些重試后不會改變結(jié)果,毫無意義的操作,不建議使用重試,今天通過本文給大家介紹Spring Retry組件詳解,感興趣的朋友一起看看吧2021-07-07