在Android使用RSA 算法加解密

首先聊一下RSA 算法:  RSA是目前最有影响力的公钥加密算法,它能够抵抗到目前为止已知的所有密码攻击,已被ISO推荐为公钥数据加密标准,以下就是Rsa的原理机制:

????

看完这个RSA原理机制图 , 接下来我们用程序来体现出来: 

    首先我们可以从上图看到:明文--->公钥--->密文   密文-->密钥-->明文

    RSA由于public key<公钥> 和private key<密钥>的不同<也叫非对称算法加解密>,极大的提高了文件的安全性。  对称算法是同key的 ,这样很容易被人破解。

   RSA算法:

import java.security.Key;   
import java.security.KeyFactory;   
import java.security.KeyPair;   
import java.security.KeyPairGenerator;   
import java.security.PrivateKey;   
import java.security.PublicKey;   
import java.security.interfaces.RSAPrivateKey;   
import java.security.interfaces.RSAPublicKey;   
import java.security.spec.PKCS8EncodedKeySpec;   
import java.security.spec.X509EncodedKeySpec;   
    
import javax.crypto.Cipher;   
    
import sun.misc.BASE64Decoder;   
import sun.misc.BASE64Encoder;   
    
    
public class RSAHelper {   
    
        
      public static PublicKey getPublicKey(String key) throws Exception {   
            byte[] keyBytes;   
            keyBytes = (new BASE64Decoder()).decodeBuffer(key);   
    
            X509EncodedKeySpec keySpec = new X509EncodedKeySpec(keyBytes);   
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");   
            PublicKey publicKey = keyFactory.generatePublic(keySpec);   
            return publicKey;   
      }   
        
      public static PrivateKey getPrivateKey(String key) throws Exception {   
            byte[] keyBytes;   
            keyBytes = (new BASE64Decoder()).decodeBuffer(key);   
    
            PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(keyBytes);   
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");   
            PrivateKey privateKey = keyFactory.generatePrivate(keySpec);   
            return privateKey;   
      }   
    
        
      public static String getKeyString(Key key) throws Exception {   
            byte[] keyBytes = key.getEncoded();   
            String s = (new BASE64Encoder()).encode(keyBytes);   
            return s;   
      }   
    
    
      public static void main(String[] args) throws Exception {   
    
            KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("RSA");   
            //密钥位数   
            keyPairGen.initialize(1024);   
            //密钥对   
            KeyPair keyPair = keyPairGen.generateKeyPair();   
    
            // 公钥   
            PublicKey publicKey = (RSAPublicKey) keyPair.getPublic();   
    
            // 私钥   
            PrivateKey privateKey = (RSAPrivateKey) keyPair.getPrivate();   
    
            String publicKeyString = getKeyString(publicKey);   
            System.out.println("public:\n" + publicKeyString);   
    
            String privateKeyString = getKeyString(privateKey);   
            System.out.println("private:\n" + privateKeyString);   
    
            //加解密类   
            Cipher cipher = Cipher.getInstance("RSA");//Cipher.getInstance("RSA/ECB/PKCS1Padding");   
    
            //明文   
            byte[] plainText = "我们都很好!邮件:@sina.com".getBytes();   
    
            //加密   
            cipher.init(Cipher.ENCRYPT_MODE, publicKey);   
            byte[] enBytes = cipher.doFinal(plainText);   
    
           //通过密钥字符串得到密钥   
            publicKey = getPublicKey(publicKeyString);   
            privateKey = getPrivateKey(privateKeyString);   
    
            //解密   
            cipher.init(Cipher.DECRYPT_MODE, privateKey);   
            byte[]deBytes = cipher.doFinal(enBytes);   
    
            publicKeyString = getKeyString(publicKey);   
            System.out.println("public:\n" +publicKeyString);   
    
            privateKeyString = getKeyString(privateKey);   
            System.out.println("private:\n" + privateKeyString);   
    
            String s = new String(deBytes);   
            System.out.println(s);   
    
    
      }   
    
}   

在实际开发中! 我们通过自己的modulus ,publicExponent 这两个是用户加密产生public key 而 privateExponet 用于产生private key  来开发的情况比较多。 

 


try{  
XmlPullParser parser = XmlPullParserFactory.newInstance()  
.newPullParser();  
 xpp.setInput( new StringReader ( xml string ) );  
parser.next();  
parser.require(XmlPullParser.START_TAG, null, “statuses”);  
while (parser.nextTag() != XmlPullParser.END_TAG) {  
parser.require(XmlPullParser.START_TAG, null, “status”);  
for (int i=0;i<3;i++){  
parser.nextTag();  
Log.v(“tag”,parser.getName()+”=”+ parser.nextText());  
}  
while (parser.nextTag() != XmlPullParser.END_TAG) {  
parser.require(XmlPullParser.START_TAG, null, “user”);  
while (parser.nextTag() != XmlPullParser.END_TAG) {  
String name = parser.getName();  
String text2 = parser.nextText();  
Log.v(“tag”,”text2″+text2);  
parser.require(XmlPullParser.END_TAG, null, name);  
}  
parser.require(XmlPullParser.END_TAG, null, “user”);  
}  
parser.require(XmlPullParser.END_TAG, null, “status”);  
}  
parser.require(XmlPullParser.END_TAG, null, “statuses”);  
parser.next();  
parser.require(XmlPullParser.END_DOCUMENT, null, null);  
// global.userinfo.dump();  
} catch (XmlPullParserException e) {  
} catch (Exception e) {  
}  

import java.math.BigInteger;   
  
import java.security.KeyFactory;   
  
import java.security.PrivateKey;   
  
import java.security.PublicKey;   
  
import java.security.spec.RSAPrivateKeySpec;   
  
import java.security.spec.RSAPublicKeySpec;   
  
    
  
import javax.crypto.Cipher;   
  
    
  
public class RsaKey {   
  
    
  
      public PublicKey getPublicKey(String modulus,String publicExponent) throws Exception {   
  
            BigInteger m = new BigInteger(modulus);   
  
            BigInteger e = new BigInteger(publicExponent);   
  
            RSAPublicKeySpec keySpec = new RSAPublicKeySpec(m,e);   
  
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");     
            PublicKey publicKey = keyFactory.generatePublic(keySpec);   
  
            return publicKey;   
  
      }   
  
    
  
      public PrivateKey getPrivateKey(String modulus,String privateExponent) throws Exception {   
  
            BigInteger m = new BigInteger(modulus);   
  
            BigInteger e = new BigInteger(privateExponent);   
  
            RSAPrivateKeySpec keySpec = new RSAPrivateKeySpec(m,e);   
  
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");   
  
            PrivateKey privateKey = keyFactory.generatePrivate(keySpec);   
  
            return privateKey;   
  
      }   
  
    
  
      public static void main(String[] args) throws Exception {   
  
            String modulus = "10103166745709600780215616551837697832816413714471062522342538060943596036859967333870827790358555455232243383580565187280643159050869924436081447583051139";   
  
            String publicExponent = "65537";   
  
            String privateExponet = "367979294475011322800474185715497882523349856362702385535371444397399388741997039894583483410120364529325888461124714276674612930833020362278754665756193";   
  
    
  
            RsaKey key = new RsaKey();   
  
            PublicKey publicKey = key.getPublicKey(modulus, publicExponent);   
  
            PrivateKey privateKey = key.getPrivateKey(modulus, privateExponet);   
  
    
  
    
  
            //加解密类   
  
            Cipher cipher = Cipher.getInstance("RSA");   //"RSA/ECB/PKCS1Padding"   就是:“算法/工作模式/填充模式”
  
    
  
            //明文   
  
            byte[] plainText = "hello world !".getBytes();   
  
    
  
            //加密   
  
            cipher.init(Cipher.ENCRYPT_MODE, publicKey);   
  
        byte[] enBytes = cipher.doFinal(plainText);   
  
    
  
    
  
        cipher.init(Cipher.DECRYPT_MODE, privateKey);   
  
            byte[]deBytes = cipher.doFinal(enBytes);   
  
    
  
            String s = new String(deBytes);   
  
            System.out.println(s);   
  
    
  
      }   
   
}                               

最里面那个可以满足 <user>也是循环. 如果<user>不循环.
可以使用.

for (int i=0;i<3;i++){  
parser.nextTag();  
Log.v(“tag”,parser.getName()+”=”+ parser.nextText());  
}  


  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
RSA封装类 ,完整的RSA加密和解密 public class RSAUtilEncrypt { public static final String KEY_ALGORTHM = "RSA";// public static final String KEY_ALGORTHM_RSA_ECB_PKCS1PADDING = "RSA/ECB/PKCS1Padding"; public static String RSA_PUBLIC_KEY = "rsa_public_key"; public static String RSA_PRIVATE_KEY = "rsa_private_key"; private int KeySize = 1024; private Map keyMap; private static String RSA = "RSA"; private static PublicKey publickey; public RSAUtilEncrypt(int KeySize,String publickey) { this.KeySize = KeySize; try { this.publickey=generatePublicKeyByString(publickey); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } private RSAPublicKey generatePublicKeyByString(String publicKeyStr) throws Exception { try { BASE64Decoder base64Decoder = new BASE64Decoder(); byte[] buffer = base64Decoder.decodeBuffer(publicKeyStr); X509EncodedKeySpec keySpec = new X509EncodedKeySpec(buffer); KeyFactory keyFactory = KeyFactory.getInstance("RSA"); return (RSAPublicKey) keyFactory.generatePublic(keySpec); } catch (NoSuchAlgorithmException e) { throw new Exception("No Algorthm,Checked by cemung!"); } catch (InvalidKeySpecException e) { throw new Exception("InvalidKeySpec!"); } catch (IOException e) { throw new Exception("Io exception!"); } catch (NullPointerException e) { throw new Exception("Illegle pointer reference!"); } } // Encypt public byte[] RSAEncrypt(byte[] data, RSAPublicKey publickey) throws Exception { Cipher cipher = Cipher.getInstance(KEY_ALGORTHM_RSA_ECB_PKCS1PADDING); cipher.init(Cipher.ENCRYPT_MODE, this.publickey); byte[] cipherbytes = cipher.doFinal(data); return cipherbytes; } // Encypt public byte[] RSAEncrypt(byte[] data) throws Exception { Cipher cipher = Cipher.getInstance(KEY_ALGORTHM_RSA_ECB_PKCS1PADDING); cipher.init(Cipher.ENCRYPT_MODE, this.publickey); byte[] cipherbytes = cipher.doFinal(data); return cipherbytes; } // Get Public key with format byte[] public byte[] getPublicKeyByte() { RSAPublicKey pubkey = (RSAPublicKey) keyMap.get(RSA_PUBLIC_KEY); return pubkey.getEncoded(); } public static byte[] decryptBASE64(String key) throws Exception { return (new BASE64Decoder()).decodeBuffer(key); } public static String encryptBASE64(byte[] key) throws Exception { return (new BASE64Encoder()).encodeBuffer(key); } public static byte[] decryptByPrivateKey(byte[] data, String key) throws Exception { byte[] keyBytes = decryptBASE64(key); PKCS8EncodedKeySpec pkcs8EncodedKeySpec = new PKCS8EncodedKeySpec( keyBytes); KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORTHM); Key privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec); Cipher cipher = Cipher.getInstance(keyFactory.getAlgorithm()); cipher.init(Cipher.DECRYPT_MODE, privateKey); return cipher.doFinal(data); } public static byte[] encryptByPublicKey(byte[] data, String key) throws Exception { byte[] keyBytes = decryptBASE64(key); X509EncodedKeySpec x509EncodedKeySpec = new X509EncodedKeySpec(keyBytes); KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORTHM); Key publicKey = keyFactory.generatePublic(x509EncodedKeySpec); Cipher cipher = Cipher.getInstance(keyFactory.getAlgorithm()); cipher.init(Cipher.ENCRYPT_MODE, publicKey); return cipher.doFinal(data); } public static byte[] decryptByPublicKey(byte[] data, String key) throws Exception { byte[] keyBytes = decryptBASE64(key); X509EncodedKeySpec x509EncodedKeySpec = new X509EncodedKeySpec(keyBytes); KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORTHM); Key publicKey = keyFactory.generatePublic(x509EncodedKeySpec); Cipher cipher = Cipher.getInstance(keyFactory.getAlgorithm()); cipher.init(Cipher.DECRYPT_MODE, publicKey); return cipher.doFinal(data); } 使用方法 private RSAUtilEncrypt rsa = new RSAUtilEncrypt(1024, publikey); /* * 给信息加密,获取密文 */ public String getCiphertext(String str_encrode) { try { byte[] estr = rsa.RSAEncrypt(str_encrode.getBytes()); // 密文 String ciphertext = Base64.encodeToString(estr, Base64.DEFAULT); return ciphertext; } catch (Exception e) { e.printStackTrace(); } return null; } 有疑问的留言
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值