第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

RSA上一篇顯示不全,代碼在這一篇

標(biāo)簽:
Android
记得用自己BASE64不用android自带的,要不有时候会出问题
**
 * RSA+BASE64进行加密和解密
 */

public class RSA {
    //指定加密算法的名字
    public static String ALGORITHM="RSA";
    //指定key的位数   N的位数
    public static int KEYSIZE=16384;
    //指定公钥存放的文件
    public static String PUBLIC_KEY_FILE="public_key.dat";
    //指定私钥存放的文件
    public static String PRIVATE_KEY_FILE="private_key.dat";
    /**
     * 生成密钥对 公(e,n)   私(d,n)
     */
    public static void generateKeyPair() throws Exception{
        //需要一个安全的随机数源
        SecureRandom sr=new SecureRandom();
        //需要一个KeyPairGenerator对象
        KeyPairGenerator kpg=KeyPairGenerator.getInstance(ALGORITHM);
        //开始产生1和2部中用到的所有数据
        //位数必须是64的倍数,在512--65536之间 默认1024
        kpg.initialize(KEYSIZE,sr);
        //生成密钥对
        KeyPair keyPair=kpg.generateKeyPair();
        //得到公钥
        Key publicKey=keyPair.getPublic();
        //得到私钥
        Key privateKey=keyPair.getPrivate();
        //可以把公钥和私钥都写入文件保存下来
        ObjectOutputStream oos1=new ObjectOutputStream(new FileOutputStream(PUBLIC_KEY_FILE));
        ObjectOutputStream oos2=new ObjectOutputStream(new FileOutputStream(PRIVATE_KEY_FILE));
        oos1.writeObject(publicKey);
        oos2.writeObject(privateKey);
        oos2.close();
        oos1.close();

    }
    /**
     * 加密
     */
    public static String encrypt(String source) throws Exception{
        generateKeyPair();
        //取出公钥
        ObjectInputStream ois=new ObjectInputStream(new FileInputStream(PUBLIC_KEY_FILE));
        Key key=(Key)ois.readObject();
        ois.close();
        //开始用公钥加密
        Cipher cipher=Cipher.getInstance(ALGORITHM);
        cipher.init(Cipher.ENCRYPT_MODE,key);
        byte[] b=source.getBytes();
        //用base64进行编码    字符和byte转换的一种方式
        byte[] b1=cipher.doFinal(b);
        BASE64Encoder encoder=new BASE64Encoder();
        return encoder.encode(b1);
    }

    /**
     * 解密
     */
    public static String decrypt(String cryptText) throws Exception{
        //读文件
        ObjectInputStream ois=new ObjectInputStream(new FileInputStream(PRIVATE_KEY_FILE));
        Key key=(Key)ois.readObject();
        //解密
        Cipher cipher=Cipher.getInstance(ALGORITHM);
        cipher.init(Cipher.DECRYPT_MODE,key);
        BASE64Decoder decoder=new BASE64Decoder();
        byte[] b1=decoder.decodeBuffer(cryptText);
        byte[] b=cipher.doFinal(b1);
        return new String(b);
    }
    @Test
    public void test(){
        try{
            //客户端用公钥加密
            String str="android";
            String text=encrypt(str);
            System.out.println("密文:"+text);

            //到了服务端进行用私钥解密
            String target=decrypt(text);
            System.out.println("明文:"+target);


        }catch(Exception e){
            e.printStackTrace();
        }
    }

}


原文链接:http://www.apkbus.com/blog-340477-76756.html

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺(jué)得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫(xiě)下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說(shuō)多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開(kāi)微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專(zhuān)欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消