亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

乌兰县| 青岛市| 民丰县| 隆昌县| 翼城县| 湖南省| 禹城市| 灵台县| 繁峙县| 新巴尔虎左旗| 台山市| 武山县| 巴塘县| 建平县| 日土县| 呼和浩特市| 大洼县| 紫金县| 石河子市| 获嘉县| 潼南县| 砀山县| 鲁甸县| 洛川县| SHOW| 崇义县| 襄城县| 南川市| 大方县| 南溪县| 昂仁县| 康马县| 团风县| 枣阳市| 五原县| 麦盖提县| 芷江| 荔波县| 伊金霍洛旗| 大丰市| 汉中市|