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 ...
随机推荐
- MongoDB 进阶模式设计
原文链接:http://www.mongoing.com/mongodb-advanced-pattern-design 12月12日上午,TJ在开源中国的年终盛典会上分享了文档模型设计的进阶技巧,就 ...
- **15.app后端怎么设计用户登录方案(API权限安全)
在很多app中,都需要用户的登录操作.登录,就需要用到用户名和密码.为了安全起见,暴露明文密码的次数越少越好.怎么能最大程度避免泄露用户的密码呢?在登录后,app后端怎么去验证和维持用户的登录状态呢? ...
- 【LOJ】#2186. 「SDOI2015」道路修建
题解 就是线段树维护一下转移矩阵 分成两种情况,一种是前面有两个联通块,一种是前面有一个联通块 从一个联通块转移到一个联通块 也就是新加一列的三个边选其中两条即可 从一个联通块转移到两个联通块 不连竖 ...
- 【AtCoder】ARC089
C - Traveling 先看能不能走到,再看看奇偶性是否相同 #include <bits/stdc++.h> #define fi first #define se second # ...
- 【noip模拟赛1】古韵之鹊桥相会(最短路)
描述 迢迢牵牛星,皎皎河汉女. 纤纤擢素手,札札弄机杼: 终日不成章,泣涕零如雨. 河汉清且浅,相去复几许? 盈盈一水间,脉脉不得语. ——<古诗十九首> 传说,上古时期的某个七月七日,王 ...
- ld: -pie can only be used when targeting iOS 4.2 or later
ld: -pie can only be used when targeting iOS 4.2 or later clang: error: linker command failed with e ...
- Windows下CRF++进行中文人名识别的初次尝试
语料来自1998年1月份人民日报语料 1 语料处理 1.1 原始语料数据格式 语料中,句子已经被分词好,并且在人名后以“/”标注了“nr”表示是人名,其他非人名的分词没有进行标注 1.2 CRF++要 ...
- org.apache.maven.archiver.MavenArchiver.getManifest错误
eclipse导入新的maven项目时,pom.xml第一行报错: org.apache.maven.archiver.MavenArchiver.getManifest(org.apache.mav ...
- Xamarin iOS教程之页面控件
Xamarin iOS教程之页面控件 Xamarin iOS 页面控件 在iPhone手机的主界面中,经常会看到一排小白点,那就是页面控件,如图2.44所示.它是由小白点和滚动视图组成,可以用来控制翻 ...
- 在ssh中利用Solr服务建立的界面化站内搜索
继上次匆匆搭建起结合solr和nutch的所谓站内搜索引擎之后,虽当时心中兴奋不已,可是看了看百度,再只能看看我的控制台的打印出每个索引项的几行文字,哦,好像差距还是有点大…… 简 ...