中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java加密算法RSA的實例介紹

發布時間:2021-08-26 13:41:15 來源:億速云 閱讀:92 作者:chen 欄目:編程語言

這篇文章主要講解了“Java加密算法RSA的實例介紹”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Java加密算法RSA的實例介紹”吧!

代碼如下

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 {    //創建秘鑰對生成器    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密鑰,只需要在初始化密鑰對生成器做一些變動,其他部分可以復用。

generator.initialize(2048);

這個例子只是基本常用的RSA加解密,也可加入base64,簽名。

感謝各位的閱讀,以上就是“Java加密算法RSA的實例介紹”的內容了,經過本文的學習后,相信大家對Java加密算法RSA的實例介紹這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沧源| 布拖县| 唐山市| 玉林市| 剑阁县| 商丘市| 广德县| 黑龙江省| 普洱| 卢氏县| 威海市| 福泉市| 外汇| 唐河县| 阳江市| 陵水| 怀仁县| 涟源市| 鲜城| 红安县| 玛沁县| 仪征市| 美姑县| 惠水县| 普安县| 高陵县| 潞西市| 和田县| 高邮市| 永春县| 崇义县| 偃师市| 抚远县| 夹江县| 桐城市| 阿克| 枣庄市| 石河子市| 绥阳县| 额敏县| 和田县|