设为首页 收藏本站
查看: 517|回复: 0

[经验分享] android&php 加密解密

[复制链接]

尚未签到

发表于 2015-8-24 09:51:41 | 显示全部楼层 |阅读模式
from://http://blog.iyunv.com/hecker385/article/details/6717647

android&php 加密解密

分类: Php Android2011-08-25 11:15 556人阅读 评论(2) 收藏 举报
android加密phplayoutexceptionstring
  MyCryptActivity.java
  



[java] view plaincopyprint?

  • package com.test.crypt;  
  •   
  • import android.app.Activity;  
  • import android.os.Bundle;  
  • import android.view.View;  
  • import android.view.View.OnClickListener;  
  • import android.widget.Button;  
  • import android.widget.EditText;  
  •   
  • public class MyCryptActivity extends Activity {  
  •     /** Called when the activity is first created. */  
  •     private EditText plainTextbefore, plaintextafter, ciphertext;  
  •     private Button button01;  
  •     private MCrypt mcrypt;  
  •     @Override  
  •     public void onCreate(Bundle savedInstanceState) {  
  •         super.onCreate(savedInstanceState);  
  •         setContentView(R.layout.main);  
  •          
  •         plainTextbefore = (EditText)findViewById(R.id.EditText01);  
  •         ciphertext = (EditText)findViewById(R.id.EditText02);  
  •         plaintextafter = (EditText)findViewById(R.id.EditText03);  
  •         button01=(Button)findViewById(R.id.Button01);  
  •         plainTextbefore.setHint("请输入要加密的字符串");  
  •         button01.setOnClickListener(new OnClickListener() {  
  •             @Override  
  •             public void onClick(View v) {  
  •                 // TODO Auto-generated method stub  
  •                 String plainText = plainTextbefore.getText().toString();  
  •                 mcrypt = new MCrypt();  
  •                 try {  
  •                     String encrypted = MCrypt.bytesToHex( mcrypt.encrypt(plainText));  
  •                     String decrypted = new String( mcrypt.decrypt( encrypted ) );  
  •                     ciphertext.setText(encrypted);  
  •                     plaintextafter.setText(decrypted);  
  •                 } catch (Exception e) {  
  •                     // TODO Auto-generated catch block  
  •                     e.printStackTrace();  
  •                 }  
  •             }  
  •         });  
  •     }  
  • }  
MCrypt.java  
  



[java] view plaincopyprint?

  • package com.test.crypt;  
  •   
  • import java.security.NoSuchAlgorithmException;  
  •   
  • import javax.crypto.Cipher;  
  • import javax.crypto.NoSuchPaddingException;  
  • import javax.crypto.spec.IvParameterSpec;  
  • import javax.crypto.spec.SecretKeySpec;  
  •   
  • public class MCrypt {  
  •   
  •     private String iv = "0123456789123456";//  
  •     private IvParameterSpec ivspec;  
  •     private SecretKeySpec keyspec;  
  •     private Cipher cipher;  
  •       
  •     private String SecretKey = "0123456789abcdef";//secretKey  
  •       
  •     public MCrypt()  
  •     {  
  •             ivspec = new IvParameterSpec(iv.getBytes());//偏移量  
  •   
  •             keyspec = new SecretKeySpec(SecretKey.getBytes(), "AES");//生成密钥  
  •               
  •             try {  
  •                     cipher = Cipher.getInstance("AES/CBC/NoPadding");  
  •             } catch (NoSuchAlgorithmException e) {  
  •                     // TODO Auto-generated catch block  
  •                     e.printStackTrace();  
  •             } catch (NoSuchPaddingException e) {  
  •                     // TODO Auto-generated catch block  
  •                     e.printStackTrace();  
  •             }  
  •     }  
  •       
  •     public byte[] encrypt(String text) throws Exception  
  •     {  
  •             if(text == null || text.length() == 0)  
  •                     throw new Exception("Empty string");  
  •               
  •             byte[] encrypted = null;  
  •   
  •             try {  
  •                     cipher.init(Cipher.ENCRYPT_MODE, keyspec, ivspec);  
  •   
  •                     encrypted = cipher.doFinal(padString(text).getBytes());  
  •             } catch (Exception e)  
  •             {                        
  •                     throw new Exception("[encrypt] " + e.getMessage());  
  •             }  
  •               
  •             return encrypted;  
  •     }  
  •       
  •     public byte[] decrypt(String code) throws Exception  
  •     {  
  •             if(code == null || code.length() == 0)  
  •                     throw new Exception("Empty string");  
  •               
  •             byte[] decrypted = null;  
  •   
  •             try {  
  •                     cipher.init(Cipher.DECRYPT_MODE, keyspec, ivspec);//<span style="font-family: Simsun;font-size:16px; ">用密钥和一组算法参数初始化此 Cipher。</span>  
  •                      
  •                     decrypted = cipher.doFinal(hexToBytes(code));  
  •             } catch (Exception e)  
  •             {  
  •                     throw new Exception("[decrypt] " + e.getMessage());  
  •             }  
  •             return decrypted;  
  •     }  
  •       
  •   
  •       
  •     public static String bytesToHex(byte[] data)  
  •     {  
  •             if (data==null)  
  •             {  
  •                     return null;  
  •             }  
  •               
  •             int len = data.length;  
  •             String str = "";  
  •             for (int i=0; i<len; i++) {  
  •                     if ((data&0xFF)<16)  
  •                             str = str + "0" + java.lang.Integer.toHexString(data&0xFF);  
  •                     else  
  •                             str = str + java.lang.Integer.toHexString(data&0xFF);  
  •             }  
  •             return str;  
  •     }  
  •       
  •               
  •     public static byte[] hexToBytes(String str) {  
  •             if (str==null) {  
  •                     return null;  
  •             } else if (str.length() < 2) {  
  •                     return null;  
  •             } else {  
  •                     int len = str.length() / 2;  
  •                     byte[] buffer = new byte[len];  
  •                     for (int i=0; i<len; i++) {  
  •                             buffer = (byte) Integer.parseInt(str.substring(i*2,i*2+2),16);  
  •                     }  
  •                     return buffer;  
  •             }  
  •     }  
  •       
  •       
  •   
  •     private static String padString(String source)  
  •     {  
  •       char paddingChar = ' ';  
  •       int size = 16;  
  •       int x = source.length() % size;  
  •       int padLength = size - x;  
  •   
  •       for (int i = 0; i < padLength; i++)  
  •       {  
  •               source += paddingChar;  
  •       }  
  •   
  •       return source;  
  •     }  
  • }  
  main.xml



[php] view plaincopyprint?

  • <?xml version="1.0" encoding="utf-8"?>  
  • <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  •     android:orientation="vertical"  
  •     android:layout_width="fill_parent"  
  •     android:layout_height="fill_parent">  
  •       
  • <TableLayout  
  • android:id="@+id/TableLayout01"  
  • android:layout_width="fill_parent"  
  • android:layout_height="wrap_content"  
  • android:collapseColumns="2"  
  • android:stretchColumns="1">  
  •     <TableRow  
  •     android:id="@+id/TableRow01"  
  •     android:layout_width="wrap_content"  
  •     android:layout_height="wrap_content">  
  •         <TextView   
  •             android:layout_width="fill_parent"   
  •             android:layout_height="wrap_content"   
  •             android:text="明文:"></TextView>  
  •         <EditText  
  •             android:id="@+id/EditText01"  
  •             android:layout_width="wrap_content"  
  •             android:layout_height="wrap_content"></EditText>  
  •     </TableRow>     
  •       
  •     <TableRow  
  •     android:id="@+id/TableRow02"  
  •     android:layout_width="wrap_content"  
  •     android:layout_height="wrap_content">  
  •         <TextView   
  •             android:layout_width="wrap_content"   
  •             android:layout_height="wrap_content"   
  •             android:text="密文:"></TextView>  
  •         <EditText  
  •             android:id="@+id/EditText02"  
  •             android:layout_width="wrap_content"  
  •             android:layout_height="wrap_content"></EditText>  
  •     </TableRow>  
  •     <TableRow  
  •     android:id="@+id/TableRow03"  
  •     android:layout_width="wrap_content"  
  •     android:layout_height="wrap_content">  
  •         <TextView   
  •             android:layout_width="wrap_content"   
  •             android:layout_height="wrap_content"   
  •             android:text="明文:"></TextView>  
  •         <EditText  
  •             android:id="@+id/EditText03"  
  •             android:layout_width="wrap_content"  
  •             android:layout_height="wrap_content"></EditText>  
  •     </TableRow>  
  • </TableLayout>  
  •   
  •     <Button   
  •         android:layout_width="fill_parent"   
  •         android:layout_height="wrap_content"   
  •         android:id="@+id/Button01"  
  •         android:text="显示密文,并解密"></Button>  
  • </LinearLayout>  
DSC0000.gif   
  php:
  
  



[php] view plaincopyprint?

  • <?php   
  •   
  • class MCrypt  
  • {  
  •         private $iv = 'fedcba9876543210'; #Same as in JAVA  
  •         private $key = '0123456789abcdef'; #Same as in JAVA  
  •   
  •   
  •         function __construct()  
  •         {  
  •         }  
  •   
  •         function encrypt($str) {  
  •   
  •           //$key = $this->hex2bin($key);      
  •           $iv = $this->iv;  
  •   
  •           $td = mcrypt_module_open('rijndael-128', '', 'cbc', $iv);  
  •   
  •           mcrypt_generic_init($td, $this->key, $iv);  
  •           $encrypted = mcrypt_generic($td, $str);  
  •   
  •           mcrypt_generic_deinit($td);  
  •           mcrypt_module_close($td);  
  •   
  •           return bin2hex($encrypted);  
  •         }  
  •   
  •         function decrypt($code) {  
  •           //$key = $this->hex2bin($key);  
  •           $code = $this->hex2bin($code);  
  •           $iv = $this->iv;  
  •   
  •           $td = mcrypt_module_open('rijndael-128', '', 'cbc', $iv);  
  •   
  •           mcrypt_generic_init($td, $this->key, $iv);  
  •           $decrypted = mdecrypt_generic($td, $code);  
  •   
  •           mcrypt_generic_deinit($td);  
  •           mcrypt_module_close($td);  
  •   
  •           return utf8_encode(trim($decrypted));  
  •         }  
  •   
  •         protected function hex2bin($hexdata) {  
  •           $bindata = '';  
  •   
  •           for ($i = 0; $i < strlen($hexdata); $i += 2) {  
  •                 $bindata .= chr(hexdec(substr($hexdata, $i, 2)));  
  •           }  
  •   
  •           return $bindata;  
  •         }  
  •   
  • }  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-103279-1-1.html 上篇帖子: 阿里云WinServer2008下配置IIS7支持php 下篇帖子: PHP入门介绍与环境配置
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表