91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

杭州市| 杂多县| 慈溪市| 和静县| 衢州市| 托克托县| 武邑县| 泾川县| 札达县| 集贤县| 区。| 蒙城县| 花莲县| 修水县| 冕宁县| 滦平县| 肥东县| 百色市| 平塘县| 南和县| 建昌县| 通许县| 郴州市| 抚松县| 南木林县| 榆林市| 玉门市| 丹寨县| 资兴市| 江川县| 平果县| 徐汇区| 南皮县| 英山县| 密山市| 于田县| 洪江市| 岳普湖县| 灌阳县| 武邑县| 电白县|