最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android數(shù)據(jù)加密之Rsa加密

 更新時(shí)間:2016年09月23日 09:08:19   作者:總李寫(xiě)代碼  
這篇文章主要為大家詳細(xì)介紹了Android數(shù)據(jù)加密之Rsa加密,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

前言:

最近無(wú)意中和同事交流數(shù)據(jù)安全傳輸?shù)膯?wèn)題,想起自己曾經(jīng)使用過(guò)的Rsa非對(duì)稱加密算法,閑下來(lái)總結(jié)一下。 

其他幾種加密方式:

 •Android數(shù)據(jù)加密之Rsa加密
 •Android數(shù)據(jù)加密之Aes加密
 •Android數(shù)據(jù)加密之Des加密
 •Android數(shù)據(jù)加密之MD5加密
 •Android數(shù)據(jù)加密之Base64編碼算法
 •Android數(shù)據(jù)加密之SHA安全散列算法 

什么是Rsa加密?

RSA算法是最流行的公鑰密碼算法,使用長(zhǎng)度可以變化的密鑰。RSA是第一個(gè)既能用于數(shù)據(jù)加密也能用于數(shù)字簽名的算法。

RSA算法原理如下:

1.隨機(jī)選擇兩個(gè)大質(zhì)數(shù)p和q,p不等于q,計(jì)算N=pq;
2.選擇一個(gè)大于1小于N的自然數(shù)e,e必須與(p-1)(q-1)互素。
3.用公式計(jì)算出d:d×e = 1 (mod (p-1)(q-1)) 。
4.銷(xiāo)毀p和q。

最終得到的N和e就是“公鑰”,d就是“私鑰”,發(fā)送方使用N去加密數(shù)據(jù),接收方只有使用d才能解開(kāi)數(shù)據(jù)內(nèi)容。

RSA的安全性依賴于大數(shù)分解,小于1024位的N已經(jīng)被證明是不安全的,而且由于RSA算法進(jìn)行的都是大數(shù)計(jì)算,使得RSA最快的情況也比DES慢上倍,這是RSA最大的缺陷,因此通常只能用于加密少量數(shù)據(jù)或者加密密鑰,但RSA仍然不失為一種高強(qiáng)度的算法。

該如何使用呢?  

第一步:首先生成秘鑰對(duì) 

 /**
  * 隨機(jī)生成RSA密鑰對(duì)
  *
  * @param keyLength 密鑰長(zhǎng)度,范圍:512~2048
  *     一般1024
  * @return
  */
 public static KeyPair generateRSAKeyPair(int keyLength) {
  try {
   KeyPairGenerator kpg = KeyPairGenerator.getInstance(RSA);
   kpg.initialize(keyLength);
   return kpg.genKeyPair();
  } catch (NoSuchAlgorithmException e) {
   e.printStackTrace();
   return null;
  }
 }

具體加密實(shí)現(xiàn): 

公鑰加密 

 /**
  * 用公鑰對(duì)字符串進(jìn)行加密
  *
  * @param data 原文
  */
 public static byte[] encryptByPublicKey(byte[] data, byte[] publicKey) throws Exception {
  // 得到公鑰
  X509EncodedKeySpec keySpec = new X509EncodedKeySpec(publicKey);
  KeyFactory kf = KeyFactory.getInstance(RSA);
  PublicKey keyPublic = kf.generatePublic(keySpec);
  // 加密數(shù)據(jù)
  Cipher cp = Cipher.getInstance(ECB_PKCS1_PADDING);
  cp.init(Cipher.ENCRYPT_MODE, keyPublic);
  return cp.doFinal(data);
 }

私鑰加密 

 /**
  * 私鑰加密
  *
  * @param data  待加密數(shù)據(jù)
  * @param privateKey 密鑰
  * @return byte[] 加密數(shù)據(jù)
  */
 public static byte[] encryptByPrivateKey(byte[] data, byte[] privateKey) throws Exception {
  // 得到私鑰
  PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(privateKey);
  KeyFactory kf = KeyFactory.getInstance(RSA);
  PrivateKey keyPrivate = kf.generatePrivate(keySpec);
  // 數(shù)據(jù)加密
  Cipher cipher = Cipher.getInstance(ECB_PKCS1_PADDING);
  cipher.init(Cipher.ENCRYPT_MODE, keyPrivate);
  return cipher.doFinal(data);
 }

公鑰解密 

 /**
  * 公鑰解密
  *
  * @param data  待解密數(shù)據(jù)
  * @param publicKey 密鑰
  * @return byte[] 解密數(shù)據(jù)
  */
 public static byte[] decryptByPublicKey(byte[] data, byte[] publicKey) throws Exception {
  // 得到公鑰
  X509EncodedKeySpec keySpec = new X509EncodedKeySpec(publicKey);
  KeyFactory kf = KeyFactory.getInstance(RSA);
  PublicKey keyPublic = kf.generatePublic(keySpec);
  // 數(shù)據(jù)解密
  Cipher cipher = Cipher.getInstance(ECB_PKCS1_PADDING);
  cipher.init(Cipher.DECRYPT_MODE, keyPublic);
  return cipher.doFinal(data);
 }

私鑰解密 

 /**
  * 使用私鑰進(jìn)行解密
  */
 public static byte[] decryptByPrivateKey(byte[] encrypted, byte[] privateKey) throws Exception {
  // 得到私鑰
  PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(privateKey);
  KeyFactory kf = KeyFactory.getInstance(RSA);
  PrivateKey keyPrivate = kf.generatePrivate(keySpec);

  // 解密數(shù)據(jù)
  Cipher cp = Cipher.getInstance(ECB_PKCS1_PADDING);
  cp.init(Cipher.DECRYPT_MODE, keyPrivate);
  byte[] arr = cp.doFinal(encrypted);
  return arr;
 }

幾個(gè)全局變量解說(shuō): 

 public static final String RSA = "RSA";// 非對(duì)稱加密密鑰算法
 public static final String ECB_PKCS1_PADDING = "RSA/ECB/PKCS1Padding";//加密填充方式
 public static final int DEFAULT_KEY_SIZE = 2048;//秘鑰默認(rèn)長(zhǎng)度
 public static final byte[] DEFAULT_SPLIT = "#PART#".getBytes(); // 當(dāng)要加密的內(nèi)容超過(guò)bufferSize,則采用partSplit進(jìn)行分塊加密
 public static final int DEFAULT_BUFFERSIZE = (DEFAULT_KEY_SIZE / 8) - 11;// 當(dāng)前秘鑰支持加密的最大字節(jié)數(shù)

關(guān)于加密填充方式:之前以為上面這些操作就能實(shí)現(xiàn)rsa加解密,以為萬(wàn)事大吉了,呵呵,這事還沒(méi)完,悲劇還是發(fā)生了,Android這邊加密過(guò)的數(shù)據(jù),服務(wù)器端死活解密不了,原來(lái)android系統(tǒng)的RSA實(shí)現(xiàn)是"RSA/None/NoPadding",而標(biāo)準(zhǔn)JDK實(shí)現(xiàn)是"RSA/None/PKCS1Padding" ,這造成了在android機(jī)上加密后無(wú)法在服務(wù)器上解密的原因,所以在實(shí)現(xiàn)的時(shí)候這個(gè)一定要注意。 

實(shí)現(xiàn)分段加密:搞定了填充方式之后又自信的認(rèn)為萬(wàn)事大吉了,可是意外還是發(fā)生了,RSA非對(duì)稱加密內(nèi)容長(zhǎng)度有限制,1024位key的最多只能加密127位數(shù)據(jù),否則就會(huì)報(bào)錯(cuò)(javax.crypto.IllegalBlockSizeException: Data must not be longer than 117 bytes) , RSA 是常用的非對(duì)稱加密算法。最近使用時(shí)卻出現(xiàn)了“不正確的長(zhǎng)度”的異常,研究發(fā)現(xiàn)是由于待加密的數(shù)據(jù)超長(zhǎng)所致。RSA 算法規(guī)定:待加密的字節(jié)數(shù)不能超過(guò)密鑰的長(zhǎng)度值除以 8 再減去 11(即:KeySize / 8 - 11),而加密后得到密文的字節(jié)數(shù),正好是密鑰的長(zhǎng)度值除以 8(即:KeySize / 8)。

公鑰分段加密 

/**
  * 用公鑰對(duì)字符串進(jìn)行分段加密
  *
  */
 public static byte[] encryptByPublicKeyForSpilt(byte[] data, byte[] publicKey) throws Exception {
  int dataLen = data.length;
  if (dataLen <= DEFAULT_BUFFERSIZE) {
   return encryptByPublicKey(data, publicKey);
  }
  List<Byte> allBytes = new ArrayList<Byte>(2048);
  int bufIndex = 0;
  int subDataLoop = 0;
  byte[] buf = new byte[DEFAULT_BUFFERSIZE];
  for (int i = 0; i < dataLen; i++) {
   buf[bufIndex] = data[i];
   if (++bufIndex == DEFAULT_BUFFERSIZE || i == dataLen - 1) {
    subDataLoop++;
    if (subDataLoop != 1) {
     for (byte b : DEFAULT_SPLIT) {
      allBytes.add(b);
     }
    }
    byte[] encryptBytes = encryptByPublicKey(buf, publicKey);
    for (byte b : encryptBytes) {
     allBytes.add(b);
    }
    bufIndex = 0;
    if (i == dataLen - 1) {
     buf = null;
    } else {
     buf = new byte[Math.min(DEFAULT_BUFFERSIZE, dataLen - i - 1)];
    }
   }
  }
  byte[] bytes = new byte[allBytes.size()];
  {
   int i = 0;
   for (Byte b : allBytes) {
    bytes[i++] = b.byteValue();
   }
  }
  return bytes;
 }

私鑰分段加密 

 /**
  * 分段加密
  *
  * @param data  要加密的原始數(shù)據(jù)
  * @param privateKey 秘鑰
  */
 public static byte[] encryptByPrivateKeyForSpilt(byte[] data, byte[] privateKey) throws Exception {
  int dataLen = data.length;
  if (dataLen <= DEFAULT_BUFFERSIZE) {
   return encryptByPrivateKey(data, privateKey);
  }
  List<Byte> allBytes = new ArrayList<Byte>(2048);
  int bufIndex = 0;
  int subDataLoop = 0;
  byte[] buf = new byte[DEFAULT_BUFFERSIZE];
  for (int i = 0; i < dataLen; i++) {
   buf[bufIndex] = data[i];
   if (++bufIndex == DEFAULT_BUFFERSIZE || i == dataLen - 1) {
    subDataLoop++;
    if (subDataLoop != 1) {
     for (byte b : DEFAULT_SPLIT) {
      allBytes.add(b);
     }
    }
    byte[] encryptBytes = encryptByPrivateKey(buf, privateKey);
    for (byte b : encryptBytes) {
     allBytes.add(b);
    }
    bufIndex = 0;
    if (i == dataLen - 1) {
     buf = null;
    } else {
     buf = new byte[Math.min(DEFAULT_BUFFERSIZE, dataLen - i - 1)];
    }
   }
  }
  byte[] bytes = new byte[allBytes.size()];
  {
   int i = 0;
   for (Byte b : allBytes) {
    bytes[i++] = b.byteValue();
   }
  }
  return bytes;
 }

公鑰分段解密 

 /**
  * 公鑰分段解密
  *
  * @param encrypted 待解密數(shù)據(jù)
  * @param publicKey 密鑰
  */
 public static byte[] decryptByPublicKeyForSpilt(byte[] encrypted, byte[] publicKey) throws Exception {
  int splitLen = DEFAULT_SPLIT.length;
  if (splitLen <= 0) {
   return decryptByPublicKey(encrypted, publicKey);
  }
  int dataLen = encrypted.length;
  List<Byte> allBytes = new ArrayList<Byte>(1024);
  int latestStartIndex = 0;
  for (int i = 0; i < dataLen; i++) {
   byte bt = encrypted[i];
   boolean isMatchSplit = false;
   if (i == dataLen - 1) {
    // 到data的最后了
    byte[] part = new byte[dataLen - latestStartIndex];
    System.arraycopy(encrypted, latestStartIndex, part, 0, part.length);
    byte[] decryptPart = decryptByPublicKey(part, publicKey);
    for (byte b : decryptPart) {
     allBytes.add(b);
    }
    latestStartIndex = i + splitLen;
    i = latestStartIndex - 1;
   } else if (bt == DEFAULT_SPLIT[0]) {
    // 這個(gè)是以split[0]開(kāi)頭
    if (splitLen > 1) {
     if (i + splitLen < dataLen) {
      // 沒(méi)有超出data的范圍
      for (int j = 1; j < splitLen; j++) {
       if (DEFAULT_SPLIT[j] != encrypted[i + j]) {
        break;
       }
       if (j == splitLen - 1) {
        // 驗(yàn)證到split的最后一位,都沒(méi)有break,則表明已經(jīng)確認(rèn)是split段
        isMatchSplit = true;
       }
      }
     }
    } else {
     // split只有一位,則已經(jīng)匹配了
     isMatchSplit = true;
    }
   }
   if (isMatchSplit) {
    byte[] part = new byte[i - latestStartIndex];
    System.arraycopy(encrypted, latestStartIndex, part, 0, part.length);
    byte[] decryptPart = decryptByPublicKey(part, publicKey);
    for (byte b : decryptPart) {
     allBytes.add(b);
    }
    latestStartIndex = i + splitLen;
    i = latestStartIndex - 1;
   }
  }
  byte[] bytes = new byte[allBytes.size()];
  {
   int i = 0;
   for (Byte b : allBytes) {
    bytes[i++] = b.byteValue();
   }
  }
  return bytes;
 }

私鑰分段解密 

 /**
  * 使用私鑰分段解密
  *
  */
 public static byte[] decryptByPrivateKeyForSpilt(byte[] encrypted, byte[] privateKey) throws Exception {
  int splitLen = DEFAULT_SPLIT.length;
  if (splitLen <= 0) {
   return decryptByPrivateKey(encrypted, privateKey);
  }
  int dataLen = encrypted.length;
  List<Byte> allBytes = new ArrayList<Byte>(1024);
  int latestStartIndex = 0;
  for (int i = 0; i < dataLen; i++) {
   byte bt = encrypted[i];
   boolean isMatchSplit = false;
   if (i == dataLen - 1) {
    // 到data的最后了
    byte[] part = new byte[dataLen - latestStartIndex];
    System.arraycopy(encrypted, latestStartIndex, part, 0, part.length);
    byte[] decryptPart = decryptByPrivateKey(part, privateKey);
    for (byte b : decryptPart) {
     allBytes.add(b);
    }
    latestStartIndex = i + splitLen;
    i = latestStartIndex - 1;
   } else if (bt == DEFAULT_SPLIT[0]) {
    // 這個(gè)是以split[0]開(kāi)頭
    if (splitLen > 1) {
     if (i + splitLen < dataLen) {
      // 沒(méi)有超出data的范圍
      for (int j = 1; j < splitLen; j++) {
       if (DEFAULT_SPLIT[j] != encrypted[i + j]) {
        break;
       }
       if (j == splitLen - 1) {
        // 驗(yàn)證到split的最后一位,都沒(méi)有break,則表明已經(jīng)確認(rèn)是split段
        isMatchSplit = true;
       }
      }
     }
    } else {
     // split只有一位,則已經(jīng)匹配了
     isMatchSplit = true;
    }
   }
   if (isMatchSplit) {
    byte[] part = new byte[i - latestStartIndex];
    System.arraycopy(encrypted, latestStartIndex, part, 0, part.length);
    byte[] decryptPart = decryptByPrivateKey(part, privateKey);
    for (byte b : decryptPart) {
     allBytes.add(b);
    }
    latestStartIndex = i + splitLen;
    i = latestStartIndex - 1;
   }
  }
  byte[] bytes = new byte[allBytes.size()];
  {
   int i = 0;
   for (Byte b : allBytes) {
    bytes[i++] = b.byteValue();
   }
  }
  return bytes;
 }

這樣總算把遇見(jiàn)的問(wèn)題解決了,項(xiàng)目中使用的方案是客戶端公鑰加密,服務(wù)器私鑰解密,服務(wù)器開(kāi)發(fā)人員說(shuō)是出于效率考慮,所以還是自己寫(xiě)了個(gè)程序測(cè)試一下真正的效率 

第一步:準(zhǔn)備100條對(duì)象數(shù)據(jù) 

  List<Person> personList=new ArrayList<>();
  int testMaxCount=100;//測(cè)試的最大數(shù)據(jù)條數(shù)
  //添加測(cè)試數(shù)據(jù)
  for(int i=0;i<testMaxCount;i++){
   Person person =new Person();
   person.setAge(i);
   person.setName(String.valueOf(i));
   personList.add(person);
  }
  //FastJson生成json數(shù)據(jù)

  String jsonData=JsonUtils.objectToJsonForFastJson(personList);

  Log.e("MainActivity","加密前json數(shù)據(jù) ---->"+jsonData);
  Log.e("MainActivity","加密前json數(shù)據(jù)長(zhǎng)度 ---->"+jsonData.length());

第二步:生成秘鑰對(duì) 

  KeyPair keyPair=RSAUtils.generateRSAKeyPair(RSAUtils.DEFAULT_KEY_SIZE);
  // 公鑰
  RSAPublicKey publicKey = (RSAPublicKey) keyPair.getPublic();
  // 私鑰
  RSAPrivateKey privateKey = (RSAPrivateKey) keyPair.getPrivate(); 

接下來(lái)分別使用公鑰加密 私鑰解密   私鑰加密 公鑰解密 

  //公鑰加密
  long start=System.currentTimeMillis();
  byte[] encryptBytes= RSAUtils.encryptByPublicKeyForSpilt(jsonData.getBytes(),publicKey.getEncoded());
  long end=System.currentTimeMillis();
  Log.e("MainActivity","公鑰加密耗時(shí) cost time---->"+(end-start));
  String encryStr=Base64Encoder.encode(encryptBytes);
  Log.e("MainActivity","加密后json數(shù)據(jù) --1-->"+encryStr);
  Log.e("MainActivity","加密后json數(shù)據(jù)長(zhǎng)度 --1-->"+encryStr.length());
  //私鑰解密
  start=System.currentTimeMillis();
  byte[] decryptBytes= RSAUtils.decryptByPrivateKeyForSpilt(Base64Decoder.decodeToBytes(encryStr),privateKey.getEncoded());
  String decryStr=new String(decryptBytes);
  end=System.currentTimeMillis();
  Log.e("MainActivity","私鑰解密耗時(shí) cost time---->"+(end-start));
  Log.e("MainActivity","解密后json數(shù)據(jù) --1-->"+decryStr);

  //私鑰加密
  start=System.currentTimeMillis();
  encryptBytes= RSAUtils.encryptByPrivateKeyForSpilt(jsonData.getBytes(),privateKey.getEncoded());
  end=System.currentTimeMillis();
  Log.e("MainActivity","私鑰加密密耗時(shí) cost time---->"+(end-start));
  encryStr=Base64Encoder.encode(encryptBytes);
  Log.e("MainActivity","加密后json數(shù)據(jù) --2-->"+encryStr);
  Log.e("MainActivity","加密后json數(shù)據(jù)長(zhǎng)度 --2-->"+encryStr.length());
  //公鑰解密
  start=System.currentTimeMillis();
  decryptBytes= RSAUtils.decryptByPublicKeyForSpilt(Base64Decoder.decodeToBytes(encryStr),publicKey.getEncoded());
  decryStr=new String(decryptBytes);
  end=System.currentTimeMillis();
  Log.e("MainActivity","公鑰解密耗時(shí) cost time---->"+(end-start));
  Log.e("MainActivity","解密后json數(shù)據(jù) --2-->"+decryStr);

運(yùn)行結(jié)果:

對(duì)比發(fā)現(xiàn):私鑰的加解密都很耗時(shí),所以可以根據(jù)不同的需求采用不能方案來(lái)進(jìn)行加解密。個(gè)人覺(jué)得服務(wù)器要求解密效率高,客戶端私鑰加密,服務(wù)器公鑰解密比較好一點(diǎn) 

加密后數(shù)據(jù)大小的變化:數(shù)據(jù)量差不多是加密前的1.5倍

 以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android 測(cè)量文字寬度的實(shí)例方法

    Android 測(cè)量文字寬度的實(shí)例方法

    在本篇文章里小編給大家整理了關(guān)于Android 測(cè)量文字寬度的實(shí)例方法,需要的朋友們可以參考學(xué)習(xí)下。
    2020-02-02
  • 一款適用于Android平臺(tái)的俄羅斯方塊

    一款適用于Android平臺(tái)的俄羅斯方塊

    這篇文章主要為大家詳細(xì)介紹了一款適用于Android平臺(tái)的俄羅斯方塊,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-06-06
  • Android中使用ListView模擬微信好友功能

    Android中使用ListView模擬微信好友功能

    這篇文章主要介紹了Android中使用ListView模擬微信好友功能,需要的朋友可以參考下
    2017-08-08
  • ASM的tree?api對(duì)匿名線程的hook操作詳解

    ASM的tree?api對(duì)匿名線程的hook操作詳解

    這篇文章主要為大家介紹了ASM的tree?api對(duì)匿名線程的hook操作詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-09-09
  • Kotlin RadioGroup與ViewPager實(shí)現(xiàn)底層分頁(yè)按鈕方法

    Kotlin RadioGroup與ViewPager實(shí)現(xiàn)底層分頁(yè)按鈕方法

    安卓的控件是挺多的,沒(méi)有辦法一個(gè)一個(gè)的來(lái)說(shuō)明,我們挑出了一些重點(diǎn)的控件,組成一些常見(jiàn)的布局,這樣以后在遇到相同功能的界面時(shí),就會(huì)有自己的思路,或者進(jìn)行復(fù)用
    2022-12-12
  • 詳解Android的內(nèi)存優(yōu)化--LruCache

    詳解Android的內(nèi)存優(yōu)化--LruCache

    LruCache是基于Lru算法實(shí)現(xiàn)的一種緩存機(jī)制。本文對(duì)LruCache的概念和實(shí)現(xiàn)原理進(jìn)行介紹,通過(guò)實(shí)例分析和使用介紹,讓大家更好的了解LruCache,下面跟著小編一起來(lái)看下吧
    2016-12-12
  • Android粒子線條效果實(shí)現(xiàn)過(guò)程與代碼

    Android粒子線條效果實(shí)現(xiàn)過(guò)程與代碼

    這篇文章主要介紹了Android粒子線條效果的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧
    2023-02-02
  • Android獲取app應(yīng)用程序大小的方法

    Android獲取app應(yīng)用程序大小的方法

    本文通過(guò)一段代碼給大家介紹android獲取app應(yīng)用程序大小的方法,由于android對(duì)這種方法進(jìn)行了封裝,我們沒(méi)有權(quán)限去調(diào)用這個(gè)方法,只能通過(guò)aidl,然后用java的反射機(jī)制去調(diào)用系統(tǒng)級(jí)方法,感興趣的朋友一起學(xué)習(xí)吧
    2015-11-11
  • TabLayout用法詳解及自定義樣式

    TabLayout用法詳解及自定義樣式

    這篇文章主要介紹了TabLayout用法詳解及自定義樣式的相關(guān)資料,需要的朋友可以參考下
    2017-01-01
  • Android編程實(shí)現(xiàn)隨機(jī)生成顏色的方法示例

    Android編程實(shí)現(xiàn)隨機(jī)生成顏色的方法示例

    這篇文章主要介紹了Android編程實(shí)現(xiàn)隨機(jī)生成顏色的方法,結(jié)合實(shí)例形式分析了Android使用java Random類針對(duì)隨機(jī)數(shù)及顏色值相關(guān)操作技巧,需要的朋友可以參考下
    2017-08-08

最新評(píng)論

余江县| 团风县| 大洼县| 连南| 灯塔市| 阳江市| 石渠县| 乌审旗| 和平县| 花垣县| 青海省| 平乡县| 盱眙县| 卢氏县| 广东省| 灵山县| 杂多县| 隆德县| 巴里| 竹溪县| 仲巴县| 桃园市| 沙田区| 子长县| 青海省| 修武县| 定陶县| 永安市| 依安县| 佛学| 阳高县| 贡觉县| 天等县| 玉林市| 石景山区| 赞皇县| 富源县| 获嘉县| 平顺县| 胶南市| 左权县|