<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    paulwong

    Java生成RSA非對稱型加密的公鑰和私鑰(利用java API)

    非對稱型加密非常適合多個客戶端和服務器之間的秘密通訊,客戶端使用同一個公鑰將明文加密,而這個公鑰不能逆向的解密,密文發(fā)送到服務器后有服務器端用私鑰解密,這樣就做到了明文的加密傳送。

    非對稱型加密也有它先天的缺點,加密、解密速度慢制約了它的發(fā)揮,如果你有大量的文字需要加密傳送,建議你通過非對稱型加密來把對稱型‘密鑰’分發(fā)到客戶端,及時更新對稱型‘密鑰’。

    package com.paul.module.common.util;

    import sun.misc.BASE64Decoder;
    import sun.misc.BASE64Encoder;

    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.security.Key;
    import java.security.KeyPair;
    import java.security.KeyPairGenerator;

    import javax.crypto.Cipher;

    public class RSASecurityUtil2 {
        
    /** 指定加密算法為RSA */
        
    private static final String ALGORITHM = "RSA";
        
    /** 密鑰長度,用來初始化 */
        
    private static final int KEYSIZE = 1024;
        
    /** 指定公鑰存放文件 */
        
    private static String PUBLIC_KEY_FILE = "PublicKey";
        
    /** 指定私鑰存放文件 */
        
    private static String PRIVATE_KEY_FILE = "PrivateKey";

        
    /**
         * 生成密鑰對
         * 
    @throws Exception
         
    */
        
    private static void generateKeyPair() throws Exception {
            
    //        /** RSA算法要求有一個可信任的隨機數(shù)源 */
    //        SecureRandom secureRandom = new SecureRandom();
            
            
    /** 為RSA算法創(chuàng)建一個KeyPairGenerator對象 */
            KeyPairGenerator keyPairGenerator 
    = KeyPairGenerator.getInstance(ALGORITHM);
            
            
    /** 利用上面的隨機數(shù)據(jù)源初始化這個KeyPairGenerator對象 */
    //        keyPairGenerator.initialize(KEYSIZE, secureRandom);
            keyPairGenerator.initialize(KEYSIZE);
            
            
    /** 生成密匙對 */
            KeyPair keyPair 
    = keyPairGenerator.generateKeyPair();
            
            
    /** 得到公鑰 */
            Key publicKey 
    = keyPair.getPublic();
            
            
    /** 得到私鑰 */
            Key privateKey 
    = keyPair.getPrivate();
            
            ObjectOutputStream oos1 
    = null;
            ObjectOutputStream oos2 
    = null;
            
    try {
                
    /** 用對象流將生成的密鑰寫入文件 */
                oos1 
    = new ObjectOutputStream(new FileOutputStream(PUBLIC_KEY_FILE));
                oos2 
    = new ObjectOutputStream(new FileOutputStream(PRIVATE_KEY_FILE));
                oos1.writeObject(publicKey);
                oos2.writeObject(privateKey);
            } 
    catch (Exception e) {
                
    throw e;
            }
            
    finally{
                
    /** 清空緩存,關閉文件輸出流 */
                oos1.close();
                oos2.close();
            }
        }

        
    /**
         * 加密方法
         * 
    @param source 源數(shù)據(jù)
         * 
    @return
         * 
    @throws Exception
         
    */
        
    public static String encrypt(String source) throws Exception {
            generateKeyPair();
            Key publicKey;
            ObjectInputStream ois 
    = null;
            
    try {
                
    /** 將文件中的公鑰對象讀出 */
                ois 
    = new ObjectInputStream(new FileInputStream(
                        PUBLIC_KEY_FILE));
                publicKey 
    = (Key) ois.readObject();
            } 
    catch (Exception e) {
                
    throw e;
            }
            
    finally{
                ois.close();
            }
            
            
    /** 得到Cipher對象來實現(xiàn)對源數(shù)據(jù)的RSA加密 */
            Cipher cipher 
    = Cipher.getInstance(ALGORITHM);
            cipher.init(Cipher.ENCRYPT_MODE, publicKey);
            
    byte[] b = source.getBytes();
            
    /** 執(zhí)行加密操作 */
            
    byte[] b1 = cipher.doFinal(b);
            BASE64Encoder encoder 
    = new BASE64Encoder();
            
    return encoder.encode(b1);
        }

        
    /**
         * 解密算法
         * 
    @param cryptograph    密文
         * 
    @return
         * 
    @throws Exception
         
    */
        
    public static String decrypt(String cryptograph) throws Exception {
            Key privateKey;
            ObjectInputStream ois 
    = null;
            
    try {
                
    /** 將文件中的私鑰對象讀出 */
                ois 
    = new ObjectInputStream(new FileInputStream(
                        PRIVATE_KEY_FILE));
                privateKey 
    = (Key) ois.readObject();
            } 
    catch (Exception e) {
                
    throw e;
            }
            
    finally{
                ois.close();
            }
            
            
    /** 得到Cipher對象對已用公鑰加密的數(shù)據(jù)進行RSA解密 */
            Cipher cipher 
    = Cipher.getInstance(ALGORITHM);
            cipher.init(Cipher.DECRYPT_MODE, privateKey);
            BASE64Decoder decoder 
    = new BASE64Decoder();
            
    byte[] b1 = decoder.decodeBuffer(cryptograph);
            
            
    /** 執(zhí)行解密操作 */
            
    byte[] b = cipher.doFinal(b1);
            
    return new String(b);
        }

        
    public static void main(String[] args) throws Exception {
            String source 
    = "恭喜發(fā)財!";// 要加密的字符串
            System.out.println("準備用公鑰加密的字符串為:" + source);
            
            String cryptograph 
    = encrypt(source);// 生成的密文
            System.out.print("用公鑰加密后的結果為:" + cryptograph);
            System.out.println();

            String target 
    = decrypt(cryptograph);// 解密密文
            System.out.println("用私鑰解密后的字符串為:" + target);
            System.out.println();
        }
    }


    http://blog.sina.com.cn/s/blog_43b03c72010080t2.html
    http://topic.csdn.net/t/20040510/14/3049788.html
    http://yuanliyin.iteye.com/blog/853334

    posted on 2012-01-16 00:37 paulwong 閱讀(15002) 評論(1)  編輯  收藏 所屬分類: J2EE

    Feedback

    # re: Java生成RSA非對稱型加密的公鑰和私鑰(利用java API) 2013-07-22 16:15 發(fā)送到

    不錯  回復  更多評論   


    主站蜘蛛池模板: 日美韩电影免费看| 亚洲一区免费在线观看| 看全色黄大色大片免费久久| 老色鬼久久亚洲AV综合| 在线涩涩免费观看国产精品 | 亚洲日韩国产欧美一区二区三区 | 亚洲av永久无码精品天堂久久| 99久久久国产精品免费牛牛| 亚洲综合国产精品| 67pao强力打造高清免费| 亚洲宅男天堂a在线| 性短视频在线观看免费不卡流畅| 亚洲人成在线播放| 好男人看视频免费2019中文| 亚洲av无码一区二区三区四区| 国产成人无码免费视频97| 日韩免费高清一级毛片| 亚洲情a成黄在线观看| 久久99精品免费一区二区| 久久久久久亚洲av成人无码国产| 无码人妻久久一区二区三区免费| 久久久久亚洲AV无码网站| 免费看男女下面日出水来| 亚洲а∨精品天堂在线| 亚洲精品成人区在线观看| 91精品成人免费国产| 久久亚洲国产精品成人AV秋霞| 免费成人福利视频| 午夜亚洲国产理论片二级港台二级| 免费国产a国产片高清| 最近的2019免费中文字幕| 久久久国产精品亚洲一区| 性盈盈影院免费视频观看在线一区| 精品无码专区亚洲| 国产aⅴ无码专区亚洲av| 噼里啪啦免费观看高清动漫4| 直接进入免费看黄的网站| 亚洲精品乱码久久久久66| 成人免费的性色视频| 免费国产va视频永久在线观看| 亚洲av最新在线网址|