AES加解密算法在Android中的应用及Android4.2以上版本调用问题

 from://http://blog.csdn.net/xinzheng_wang/article/details/9159969

AES加解密算法在Android中的应用及Android4.2以上版本调用问题

分类: Android 328人阅读 评论(3) 收藏 举报

  

 

  密码学中的高级加密标准(Advanced Encryption Standard,AES),又称高级加密标准Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。该算法为比利时密码学家Joan Daemen和Vincent Rijmen所设计,结合两位作者的名字,以Rijndael之命名之。

 要区别4.2以上版本的调用方法,否则将会出现意想不到的问题。

AESCipher.java

[java] view plaincopy
 
  1. package com.test;  
  2.   
  3. import java.security.SecureRandom;  
  4.   
  5. import javax.crypto.Cipher;  
  6. import javax.crypto.KeyGenerator;  
  7. import javax.crypto.SecretKey;  
  8. import javax.crypto.spec.SecretKeySpec;  
  9.   
  10. public class AESCipher {  
  11.     public static String encrypt(String key, String src) throws Exception {     
  12.         byte[] rawKey = getRawKey(key.getBytes());     
  13.         byte[] result = encrypt(rawKey, src.getBytes());     
  14.         return toHex(result);     
  15.     }     
  16.          
  17.     public static String decrypt(String key, String encrypted) throws Exception {     
  18.         byte[] rawKey = getRawKey(key.getBytes());     
  19.         byte[] enc = toByte(encrypted);     
  20.         byte[] result = decrypt(rawKey, enc);     
  21.         return new String(result);     
  22.     }     
  23.     
  24.     private static byte[] getRawKey(byte[] seed) throws Exception {     
  25.         KeyGenerator kgen = KeyGenerator.getInstance("AES");   
  26.         // SHA1PRNG 强随机种子算法, 要区别4.2以上版本的调用方法  
  27.          SecureRandom sr = null;  
  28.        if (android.os.Build.VERSION.SDK_INT >=  17) {  
  29.          sr = SecureRandom.getInstance("SHA1PRNG""Crypto");  
  30.        } else {  
  31.          sr = SecureRandom.getInstance("SHA1PRNG");  
  32.        }   
  33.         sr.setSeed(seed);     
  34.         kgen.init(256, sr); //256 bits or 128 bits,192bits  
  35.         SecretKey skey = kgen.generateKey();     
  36.         byte[] raw = skey.getEncoded();     
  37.         return raw;     
  38.     }     
  39.     
  40.          
  41.     private static byte[] encrypt(byte[] key, byte[] src) throws Exception {     
  42.         SecretKeySpec skeySpec = new SecretKeySpec(key, "AES");     
  43.         Cipher cipher = Cipher.getInstance("AES");     
  44.         cipher.init(Cipher.ENCRYPT_MODE, skeySpec);     
  45.         byte[] encrypted = cipher.doFinal(src);     
  46.         return encrypted;     
  47.     }     
  48.     
  49.     private static byte[] decrypt(byte[] key, byte[] encrypted) throws Exception {     
  50.         SecretKeySpec skeySpec = new SecretKeySpec(key, "AES");     
  51.         Cipher cipher = Cipher.getInstance("AES");     
  52.         cipher.init(Cipher.DECRYPT_MODE, skeySpec);     
  53.         byte[] decrypted = cipher.doFinal(encrypted);     
  54.         return decrypted;     
  55.     }     
  56.     
  57.     public static String toHex(String txt) {     
  58.         return toHex(txt.getBytes());     
  59.     }     
  60.     public static String fromHex(String hex) {     
  61.         return new String(toByte(hex));     
  62.     }     
  63.          
  64.     public static byte[] toByte(String hexString) {     
  65.         int len = hexString.length()/2;     
  66.         byte[] result = new byte[len];     
  67.         for (int i = 0; i < len; i++)     
  68.             result[i] = Integer.valueOf(hexString.substring(2*i, 2*i+2), 16).byteValue();     
  69.         return result;     
  70.     }     
  71.     
  72.     public static String toHex(byte[] buf) {     
  73.         if (buf == null)     
  74.             return "";     
  75.         StringBuffer result = new StringBuffer(2*buf.length);     
  76.         for (int i = 0; i < buf.length; i++) {     
  77.             appendHex(result, buf[i]);     
  78.         }     
  79.         return result.toString();     
  80.     }     
  81.     private final static String HEX = "0123456789ABCDEF";     
  82.     private static void appendHex(StringBuffer sb, byte b) {     
  83.         sb.append(HEX.charAt((b>>4)&0x0f)).append(HEX.charAt(b&0x0f));     
  84.     }     
  85. }  


TestAES.java

[java] view plaincopy
 
  1. package com.test;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.widget.Button;  
  8. import android.widget.EditText;  
  9. import android.widget.TextView;  
  10.   
  11. public class TestAES extends Activity implements OnClickListener {  
  12.     private TextView tvTip = null;  
  13.     private EditText etKey = null;  
  14.     private EditText etStr = null;  
  15.     private Button btnEncrypt = null;  
  16.     private Button btnDecrypt = null;  
  17.     //  
  18.     String src = null;  
  19.     String key = null;  
  20.     String dest = null;  
  21.   
  22.     /** Called when the activity is first created. */  
  23.     @Override  
  24.     public void onCreate(Bundle savedInstanceState) {  
  25.         super.onCreate(savedInstanceState);  
  26.         setContentView(R.layout.main);  
  27.   
  28.         tvTip = (TextView) findViewById(R.id.tvTip);  
  29.         etKey = (EditText) findViewById(R.id.etKey);  
  30.         etStr = (EditText) findViewById(R.id.etStr);  
  31.         btnEncrypt = (Button) findViewById(R.id.btnEncrypt);  
  32.         btnEncrypt.setOnClickListener(this);  
  33.         btnDecrypt = (Button) findViewById(R.id.btnDecrypt);  
  34.         btnDecrypt.setOnClickListener(this);  
  35.         btnEncrypt.setEnabled(true);  
  36.         btnDecrypt.setEnabled(false);  
  37.   
  38.     }  
  39.   
  40.     @Override  
  41.     public void onClick(View v) {  
  42.         // TODO Auto-generated method stub  
  43.         if (v == btnEncrypt) {  
  44.             src = etStr.getText().toString().trim();  
  45.             key = etKey.getText().toString().trim();  
  46.             if (!src.equals("") && !key.equals("")) {  
  47.                 try {  
  48.                     dest = AESCipher.encrypt(key, src);  
  49.                     tvTip.setText("Encrypted:");  
  50.                     etStr.setText(dest);  
  51.                     btnEncrypt.setEnabled(false);  
  52.                     btnDecrypt.setEnabled(true);  
  53.                 } catch (Exception e) {  
  54.                     // TODO Auto-generated catch block  
  55.                     e.printStackTrace();  
  56.                 }  
  57.             }  
  58.   
  59.         } else if (v == btnDecrypt) {  
  60.             src = etStr.getText().toString().trim();  
  61.             key = etKey.getText().toString().trim();  
  62.             if (!src.equals("") && !key.equals("")) {  
  63.                 try {  
  64.                     dest = AESCipher.decrypt(key, src);  
  65.                     tvTip.setText("Decrypted:");  
  66.                     etStr.setText(dest);  
  67.                     btnDecrypt.setEnabled(false);  
  68.                     btnEncrypt.setEnabled(true);  
  69.                 } catch (Exception e) {  
  70.                     // TODO Auto-generated catch block  
  71.                     e.printStackTrace();  
  72.                 }  
  73.             }else{  
  74.                 tvTip.setText("Source:");  
  75.                 btnDecrypt.setEnabled(false);  
  76.                 btnEncrypt.setEnabled(true);  
  77.             }  
  78.         }  
  79.     }  
  80. }  


main.xml

[html] view plaincopy
 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <LinearLayout  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:orientation="vertical" >  
  11.   
  12.         <TextView  
  13.             android:layout_width="100dp"  
  14.             android:layout_height="wrap_content"  
  15.             android:text="Key:" />  
  16.   
  17.         <EditText  
  18.             android:id="@+id/etKey"  
  19.             android:layout_width="200dp"  
  20.             android:layout_height="40dp"  
  21.             android:maxLength="32"  
  22.             android:hint="Input the key" />  
  23.     </LinearLayout>  
  24.   
  25.     <LinearLayout  
  26.         android:layout_width="fill_parent"  
  27.         android:layout_height="wrap_content"  
  28.         android:orientation="vertical" >  
  29.   
  30.         <TextView  
  31.             android:id="@+id/tvTip"  
  32.             android:layout_width="100dp"  
  33.             android:layout_height="wrap_content"  
  34.             android:text="Source:" />  
  35.   
  36.         <EditText  
  37.             android:id="@+id/etStr"  
  38.             android:layout_width="400dp"  
  39.             android:layout_height="200dp"  
  40.             android:hint="Input the source"  
  41.             android:inputType="textMultiLine"  
  42.             android:maxLength="4096"  
  43.             android:maxLines="100"  
  44.             android:scrollHorizontally="false" />  
  45.     </LinearLayout>  
  46.   
  47.     <LinearLayout  
  48.         android:layout_width="fill_parent"  
  49.         android:layout_height="wrap_content"  
  50.         android:orientation="horizontal" >  
  51.   
  52.         <Button  
  53.             android:id="@+id/btnEncrypt"  
  54.             android:layout_width="120dp"  
  55.             android:layout_height="50dp"  
  56.             android:text="加密字符串" />  
  57.   
  58.         <Button  
  59.             android:id="@+id/btnDecrypt"  
  60.             android:layout_width="120dp"  
  61.             android:layout_height="50dp"  
  62.             android:text="解密字符串" />  
  63.           
  64.     </LinearLayout>  
  65.   
  66. </LinearLayout>  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。