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 ...
随机推荐
- 【前端node.js框架】node.js框架express
server.js /* 以下代码等下会有详细的解释 */ var express = require('express'); // 用来引入express模块 var app = express() ...
- Android BLE设备蓝牙通信框架BluetoothKit
BluetoothKit是一款功能强大的Android蓝牙通信框架,支持低功耗蓝牙设备的连接通信.蓝牙广播扫描及Beacon解析. 关于该项目的详细文档请关注:https://github.com/d ...
- 4.自定义数据《jquery实战》
4.4 元素中的存储自定义数据 data([key],[value]) 在元素上存放数据,返回jQuery对象. key (String) 存储的数据名. key,value (String,Any) ...
- Select查询语句1
一.语法结构 select[all|distinct]select_list from table_name[join join_condition] where search_condition g ...
- Django为数据库的ORM写测试例(TestCase)
models.py里的数据库定义如下: from django.db import models # Create your models here. class Teachers(models.Mo ...
- Nginx配置支持https协议-应用实践
Nginx配置支持https协议-应用实践 https简介 HTTPS 是运行在 TLS/SSL 之上的 HTTP,与普通的 HTTP 相比,在数据传输的安全性上有很大的提升. TLS是传输层安全协议 ...
- kaldi 三个脚本cmd.sh path.sh run.sh
参考 kaldi 的全部资料_v0.4 cmd.sh 脚本为: 可以很清楚的看到有 3 个分类分别对应 a,b,c.a 和 b 都是集群上去运行这个样子, c 就是我们需要的.我们在虚拟机上运行的 ...
- 基于nopCommerce的开发框架(附源码)
.NET的开发人员应该都知道这个大名鼎鼎的高质量b2c开源项目-nopCommerce,基于EntityFramework和MVC开发,拥有透明且结构良好的解决方案,同时结合了开源和商业软件的最佳特性 ...
- java轻松实现无锁队列
1.什么是无锁(Lock-Free)编程 当谈及 Lock-Free 编程时,我们常将其概念与 Mutex(互斥) 或 Lock(锁) 联系在一起,描述要在编程中尽量少使用这些锁结构,降低线程间互相阻 ...
- 不同浏览器的userAgent
一.IE浏览器 //IE6 "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" //IE7 "Mozill ...