国产毛片a精品毛-国产毛片黄片-国产毛片久久国产-国产毛片久久精品-青娱乐极品在线-青娱乐精品

【代碼】Android開發與PHP進行數據加密傳輸

發布時間:2013-8-16 16:01    發布者:reggae
關鍵詞: PHP , Android , 數據加密
本文介紹在Android開發中,Android開發應用如何與PHP之間進行加密傳輸數據,詳細的代碼請參考本文。
(PS:新建的QQ群,有興趣可以加入一起討論:Android學習交流群278744577,驗證:eec
java代碼:
  1. 1 mcrypt = new MCrypt();  
  2. 2 /* Encrypt */  
  3. 3 String encrypted = MCrypt.bytesToHex( mcrypt.encrypt("Text to Encrypt") );  
  4. 4 /* Decrypt */  
  5. 5 String decrypted = new String( mcrypt.decrypt( encrypted ) );
復制代碼

PHP代碼:
  1. 1 $mcrypt = new MCrypt();  
  2. 2 #Encrypt  
  3. 3 $encrypted = $mcrypt->encrypt("Text to encrypt");  
  4. 4 #Decrypt  
  5. 5 $decrypted = $mcrypt->decrypt($encrypted);
復制代碼

MCrypt.java代碼:
  1. 1 public class MCrypt {   
  2. 2         private String iv = "fedcba9876543210";//Dummy iv (CHANGE IT!)  
  3. 3         private IvParameterSpec ivspec;  
  4. 4         private SecretKeySpec keyspec;  
  5. 5         private Cipher cipher;  
  6. 6         private String SecretKey = "0123456789abcdef";//Dummy secretKey (CHANGE IT!)  
  7. 7         public MCrypt()  
  8. 8          {  
  9. 9             ivspec = new IvParameterSpec(iv.getBytes());  
  10. 10             keyspec = new SecretKeySpec(SecretKey.getBytes(), "AES");  
  11. 11             cipher = Cipher.getInstance("AES/CBC/NoPadding");  
  12. 12          }  
  13. 13         public byte[] encrypt(String text) throws Exception  
  14. 14          {  
  15. 15             if(text == null || text.length() == 0)  
  16. 16                  throw new Exception("Empty string");  
  17. 17              byte[] encrypted = null;  
  18. 18                  cipher.init(Cipher.ENCRYPT_MODE, keyspec, ivspec);  
  19. 19                  encrypted = cipher.doFinal(padString(text).getBytes());
  20. 20              return encrypted;  
  21. 21          }  
  22. 22         public byte[] decrypt(String code) throws Exception  
  23. 23         {  
  24. 24              if(code == null || code.length() == 0)  
  25. 25                  throw new Exception("Empty string");  
  26. 26              byte[] decrypted = null;  
  27. 27                  cipher.init(Cipher.DECRYPT_MODE, keyspec, ivspec);  
  28. 28                 decrypted = cipher.doFinal(hexToBytes(code));
  29. 29              return decrypted;  
  30. 30          }  
  31. 31          public static String bytesToHex(byte[] data)  
  32. 32          {  
  33. 33              if (data==null)  
  34. 34              {  
  35. 35                  return null;  
  36. 36             }               
  37. 37             int len = data.length;  
  38. 38              String str = "";  
  39. 39              for (int i=0; i
  40. 40                 if ((data[i]&0xFF)<16)  
  41. 41                     str = str + "0" + java.lang.Integer.toHexString(data[i]&0xFF);  
  42. 42                  else  
  43. 43                      str = str + java.lang.Integer.toHexString(data[i]&0xFF);  
  44. 44              }  
  45. 45              return str;  
  46. 46         }  
  47. 47          public static byte[] hexToBytes(String str) {  
  48. 48             if (str==null) {  
  49. 49                  return null;  
  50. 50              } else if (str.length() < 2) {  
  51. 51                 return null;  
  52. 52              } else {  
  53. 53                 int len = str.length() / 2;  
  54. 54                  byte[] buffer = new byte[len];  
  55. 55                  for (int i=0; i
  56. 56                      buffer[i] = (byte) Integer.parseInt(str.substring(i*2,i*2+2),16);  
  57. 57                 }  
  58. 58                  return buffer;  
  59. 59              }  
  60. 60          }     
  61. 61
  62. 62          private static String padString(String source)  
  63. 63          {  
  64. 64            char paddingChar = ' ';  
  65. 65            int size = 16;  
  66. 66            int x = source.length() % size;  
  67. 67            int padLength = size - x;  
  68. 68           for (int i = 0; i < padLength; i++)  
  69. 69           {  
  70. 70                source += paddingChar;  
  71. 71            }  
  72. 72            return source;  
  73. 73          }  
  74. 74      }
復制代碼

mcrypt.php代碼:
  1. 1 class MCrypt  
  2. 2 {  
  3. 3     private $iv = 'fedcba9876543210'; #Same as in JAVA  
  4. 4     private $key = '0123456789abcdef'; #Same as in JAVA     
  5. 5
  6. 6     function __construct()  
  7. 7      {  
  8. 8      }  
  9. 9     function encrypt($str) {  
  10. 10       //$key = $this->hex2bin($key);     
  11. 11        $iv = $this->iv;  
  12. 12        $td = mcrypt_module_open('rijndael-128', '', 'cbc', $iv);     
  13. 13        mcrypt_generic_init($td, $this->key, $iv);  
  14. 14        $encrypted = mcrypt_generic($td, $str);  
  15. 15        mcrypt_generic_deinit($td);  
  16. 16        mcrypt_module_close($td);  
  17. 17        return bin2hex($encrypted);  
  18. 18     }  
  19. 19      function decrypt($code) {  
  20. 20        //$key = $this->hex2bin($key);  
  21. 21        $code = $this->hex2bin($code);  
  22. 22        $iv = $this->iv;  
  23. 23        $td = mcrypt_module_open('rijndael-128', '', 'cbc', $iv);  
  24. 24        mcrypt_generic_init($td, $this->key, $iv);  
  25. 25        $decrypted = mdecrypt_generic($td, $code);  
  26. 26        mcrypt_generic_deinit($td);  
  27. 27        mcrypt_module_close($td);  
  28. 28        return utf8_encode(trim($decrypted));  
  29. 29      }  
  30. 30     protected function hex2bin($hexdata) {  
  31. 31        $bindata = '';     
  32. 32        for ($i = 0; $i < strlen($hexdata); $i += 2) {  
  33. 33         $bindata .= chr(hexdec(substr($hexdata, $i, 2)));  
  34. 34        }     
  35. 35        return $bindata;  
  36. 36     }  
  37. 37 }
復制代碼

本文地址:http://www.qingdxww.cn/thread-119606-1-1.html     【打印本頁】

本站部分文章為轉載或網友發布,目的在于傳遞和分享信息,并不代表本網贊同其觀點和對其真實性負責;文章版權歸原作者及原出處所有,如涉及作品內容、版權和其它問題,我們將根據著作權人的要求,第一時間更正或刪除。
您需要登錄后才可以發表評論 登錄 | 立即注冊

廠商推薦

  • Microchip視頻專區
  • 基于CEC1712實現的處理器SPI FLASH固件安全彈性方案培訓教程
  • PIC18-Q71系列MCU概述
  • 想要避免發生災難,就用MPLAB® SiC電源仿真器!
  • 5分鐘詳解定時器/計數器E和波形擴展!
  • 貿澤電子(Mouser)專區

相關視頻

關于我們  -  服務條款  -  使用指南  -  站點地圖  -  友情鏈接  -  聯系我們
電子工程網 © 版權所有   京ICP備16069177號 | 京公網安備11010502021702
快速回復 返回頂部 返回列表
主站蜘蛛池模板: 久久黑人| 日韩精品欧美高清区 | 亚洲高清美女一区二区三区 | 久久九九久精品国产 | 亚洲免费网站在线观看 | 521avav| 欧美在线播放一区二区 | 快看天堂在线免费 | 四虎中文 | 国产黄mmd在线观看免费 | 午夜aaaa| 久久国产精品一区二区三区 | 妈妈的朋友们3线在线观看 妈妈的朋友伦理在线观看 妈妈的朋友伦理片在线观看 | 91av免费在线观看 | 91热视频在线 | 91在线视频免费 | 欧美一区二区三区激情视频 | 欧美日韩国产一区二区三区不卡 | 天天拍天天干天天操 | 亚洲精品视频在线看 | 神马不卡影视 | 久操美女| 在线视频亚洲一区 | 大又大又粗又爽女人毛片 | 麻豆国产精品 | 日本护士在线视频xxxx免费 | 特片我不卡 | 欧美资源在线 | 国产自产第一区c国产 | 落跑甜心电视剧高清全集免费观看 | 国产v精品欧美精品v日韩 | 一级a爰片久久毛片 | 男人的天堂天堂网 | 欧美视频xxxxx | 高清欧美一级在线观看 | 免费国产97久久青草 | www日本视频 | 亚洲欧美第一 | 国产精品三级一区二区 | 国产在线精品观看一区 | 欧美成人观看视频在线 |