android&php 加密解密
MyCryptActivity.java
- 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
- 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[i]&0xFF)<16)
- str = str + "0" + java.lang.Integer.toHexString(data[i]&0xFF);
- else
- str = str + java.lang.Integer.toHexString(data[i]&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[i] = (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
- <?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>

php:
- <?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;
- }
- }
android&php 加密解密的更多相关文章
- C#/IOS/Android通用加密解密方法
原文:C#/IOS/Android通用加密解密方法 公司在做移动端ios/android,服务器提供接口使用的.net,用到加密解密这一块,也在网上找了一些方法,有些是.net加密了android解密 ...
- Android RSA加密解密
概述 RSA是目前最有影响力的公钥加密算法,该算法基于一个十分简单的数论事实:将两个大素数相乘十分容易,但那时想要对其乘积进行因式分解却极其困 难,因此可以将乘积公开作为加密密钥,即公钥,而两个大素数 ...
- android -------- AES加密解密算法
AES加密标准又称为高级加密标准Rijndael加密法,是美国国家标准技术研究所NIST旨在取代DES的21世纪的加密标准.AES的基本要求是,采用对称分组密码体制,密钥长度可以为128.192或25 ...
- android AES 加密解密
import java.security.Provider; import java.security.SecureRandom; import javax.crypto.Cipher; import ...
- Android Des加密解密
算法转自:http://www.linuxidc.com/Linux/2011-08/41866.htm import java.security.Key; import java.security. ...
- android -------- RSA加密解密算法
RSA加密算法是一种非对称加密算法.在公开密钥加密和电子商业中RSA被广泛使用 RSA公开密钥密码体制.所谓的公开密钥密码体制就是使用不同的加密密钥与解密密钥,是一种“由已知加密密钥推导出解密密钥在计 ...
- android Base64加密解密
// 加密传入的数据是byte类型的,并非使用decode方法将原始数据转二进制,String类型的数据 使用 str.getBytes()即可 String str = "Hello!&q ...
- android -------- DES加密解密算法
DES全称为Data Encryption Standard,即数据加密标准,是一种使用密钥加密的块算法,1977年被美国联邦政府的国家标准局确定为联邦资料处理标准(FIPS),并授权在非密级政府通信 ...
- android -------- Base64 加密解密算法
Base64是网络上最常见的用于传输8Bit字节码的编码方式之一,Base64就是一种基于64个可打印字符来表示二进制数据的方法.可查看RFC2045-RFC2049,上面有MIME的详细规范. Ba ...
随机推荐
- Java编程的逻辑 (61) - 内存映射文件及其应用 - 实现一个简单的消息队列
本系列文章经补充和完善,已修订整理成书<Java编程的逻辑>,由机械工业出版社华章分社出版,于2018年1月上市热销,读者好评如潮!各大网店和书店有售,欢迎购买,京东自营链接:http:/ ...
- #JS 前端javascript规范文档
一.规范目的 为提高团队协作效率,便于前端后期优化维护,输出高质量的文档. 二.基本准则 符合web标准,结构表现行为分离,兼容性优良.页面性能方面,代码要求简洁明了有序, 尽可能的减小服务器负载,保 ...
- Android studio2.3.3升级3.1.2坑
原文:https://blog.csdn.net/qq_26361871/article/details/80255141 1.grade配置Error: Could not find com.and ...
- CSS 浮动和清除
CSS 浮动和清除浮动 在写页面布局的过程中,浮动是大家经常用的属性.在好多的排版布局中都是用的的浮动比如说下面这些地方都是应用到了浮动. 在我学习浮动的时候可是熬坏了脑筋,在这里我分享一下我对浮动这 ...
- laravel5 session的基本使用
配置session配置文件位于config/session.hpp 默认情况下使用session驱动为文件驱动,在生产环境中,建议使用memcache或者redis驱动以便获取更快的session性能 ...
- Android SDK platforms build-tools等镜像下载
Android SDK platforms build-tools等镜像下载 下载地址:http://mirrors.neusoft.edu.cn/android/repository/ 这 ...
- MVC+easyui,写个树
前言:网上关于编写组织机构树的教程并不少,我第一次写树的时候也是在网上借鉴别人的技术,走了一些弯路写下了树.是因为这些教程都不是很全面,对于编程新手来说跳跃性太强.所以趁着闲暇时期,我用心的写个树,供 ...
- RegExp.$1
在学习vue2的compile的模板解析的时候,会出现这个正则表达式,不是很清楚,所有就弄明白下并记录下来. RegExp 是javascript中的一个内置对象.为正则表达式.RegExp.$1是R ...
- 《编写可维护的javascript》读书笔记(上)
最近在读<编写可维护的javascript>这本书,为了加深记忆,简单做个笔记,同时也让没有读过的同学有一个大概的了解. 一.编程风格 程序是写给人读的,所以一个团队的编程风格要保持一致. ...
- 命令:man
简介 man命令,是manual的缩写,manual表示手册的意思.通过man命令,可以查询大多数shell外部命令的帮助手册. 语法格式 # man [[section] page ...] ... ...