android端:

package com.kingmed.http;
import java.io.UnsupportedEncodingException;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public class AESHelper {
    
private static final String CipherMode =
"AES/ECB/PKCS5Padding";
    
private static SecretKeySpec createKey(String password) {
       
byte[] data = null;
       
if (password == null) {
           
password = "";
       
}
       
StringBuffer sb = new StringBuffer(32);
       
sb.append(password);
       
while (sb.length() < 32) {
           
sb.append("0");
       
}
       
if (sb.length() > 32) {
           
sb.setLength(32);
       
}
 
       
try {
           
data = sb.toString().getBytes("UTF-8");
       
} catch (UnsupportedEncodingException e) {
           
e.printStackTrace();
       
}
       
return new SecretKeySpec(data, "AES");
    }
 
   
    public
static byte[] encrypt(byte[] content, String password) {
       
try {
           
SecretKeySpec key = createKey(password);
           
Cipher cipher = Cipher.getInstance(CipherMode);
           
cipher.init(Cipher.ENCRYPT_MODE, key);
           
byte[] result = cipher.doFinal(content);
           
return result;
       
} catch (Exception e) {
           
e.printStackTrace();
       
}
       
return null;
    }
 
   
    public
static String encrypt(String content, String password) {
       
byte[] data = null;
       
try {
           
data = content.getBytes("UTF-8");
       
} catch (Exception e) {
           
e.printStackTrace();
       
}
       
data = encrypt(data, password);
       
String result = byte2hex(data);
       
return result;
    }
 
   
    public
static byte[] decrypt(byte[] content, String password) {
       
try {
           
SecretKeySpec key = createKey(password);
           
Cipher cipher = Cipher.getInstance(CipherMode);
           
cipher.init(Cipher.DECRYPT_MODE, key);
           
byte[] result = cipher.doFinal(content);
           
return result;
       
} catch (Exception e) {
           
e.printStackTrace();
       
}
       
return null;
    }
 
   
    public
static String decrypt(String content, String password) {
       
byte[] data = null;
       
try {
           
data = hex2byte(content);
       
} catch (Exception e) {
           
e.printStackTrace();
       
}
       
data = decrypt(data, password);
       
if (data == null)
           
return null;
       
String result = null;
       
try {
           
result = new String(data, "UTF-8");
       
} catch (UnsupportedEncodingException e) {
           
e.printStackTrace();
       
}
       
return result;
    }
 
   
    public
static String byte2hex(byte[] b) { // 一个字节的数,
       
StringBuffer sb = new StringBuffer(b.length * 2);
       
String tmp = "";
       
for (int n = 0; n < b.length; n++) {
           
// 整数转成十六进制表示
           
tmp = (java.lang.Integer.toHexString(b[n] & 0XFF));
           
if (tmp.length() == 1) {
               
sb.append("0");
           
}
           
sb.append(tmp);
       
}
       
return sb.toString().toUpperCase(); // 转成大写
    }
 
   
    private
static byte[] hex2byte(String inputString) {
       
if (inputString == null || inputString.length() < 2) {
           
return new byte[0];
       
}
       
inputString = inputString.toLowerCase();
       
int l = inputString.length() / 2;
       
byte[] result = new byte[l];
       
for (int i = 0; i < l; ++i) {
           
String tmp = inputString.substring(2 * i, 2 * i + 2);
           
result[i] = (byte) (Integer.parseInt(tmp, 16) & 0xFF);
       
}
       
return result;
    }
}

.NET端:

using System;
using System.Text;
using System.Security.Cryptography;

///
///AESHelper 的摘要说明
///
///
/// AES对称加密解密类
///
public class AESHelper
{
    #region
成员变量
    ///
    ///
密钥(32位,不足在后面补0)
    ///
    private
const string _passwd = "ihlih*0037JOHT*)(PIJY*(()JI^)IO%";
    ///
    ///
运算模式
    ///
    private
static CipherMode _cipherMode = CipherMode.ECB;
    ///
    ///
填充模式
    ///
    private
static PaddingMode _paddingMode = PaddingMode.PKCS7;
    ///
    ///
字符串采用的编码
    ///
    private
static Encoding _encoding = Encoding.UTF8;
   
#endregion

#region
辅助方法
    ///
    ///
获取32byte密钥数据
    ///
    /// 密码
    ///
    private
static byte[] GetKeyArray(string password)
    {
       
if (password == null)
       
{
           
password = string.Empty;
       
}

if (password.Length < 32)
       
{
           
password = password.PadRight(32, '0');
       
}
       
else if (password.Length > 32)
       
{
           
password = password.Substring(0, 32);
       
}

return _encoding.GetBytes(password);
    }

///
    ///
将字符数组转换成字符串
    ///
    ///
    ///
    private
static string ConvertByteToString(byte[] inputData)
    {
       
StringBuilder sb = new StringBuilder(inputData.Length * 2);
       
foreach (var b in inputData)
       
{
           
sb.Append(b.ToString("X2"));
       
}
       
return sb.ToString();
    }

///
    ///
将字符串转换成字符数组
    ///
    ///
    ///
    private
static byte[] ConvertStringToByte(string inputString)
    {
       
if (inputString == null || inputString.Length < 2)
       
{
           
throw new ArgumentException();
       
}
       
int l = inputString.Length / 2;
       
byte[] result = new byte[l];
       
for (int i = 0; i < l; ++i)
       
{
           
result[i] = Convert.ToByte(inputString.Substring(2 * i, 2),
16);
       
}

return result;
    }
   
#endregion

#region
加密
    ///
    ///
加密字节数据
    ///
    ///
要加密的字节数据
    /// 密码
    ///
    public
static byte[] Encrypt(byte[] inputData, string password)
    {
       
AesCryptoServiceProvider aes = new
AesCryptoServiceProvider();
       
aes.Key = GetKeyArray(password);
       
aes.Mode = _cipherMode;
       
aes.Padding = _paddingMode;
       
ICryptoTransform transform = aes.CreateEncryptor();
       
byte[] data = transform.TransformFinalBlock(inputData, 0,
inputData.Length);
       
aes.Clear();
       
return data;
    }

///
    ///
加密字符串(加密为16进制字符串)
    ///
    ///
要加密的字符串
    /// 密码
    ///
    public
static string Encrypt(string inputString, string password)
    {
       
byte[] toEncryptArray = _encoding.GetBytes(inputString);
       
byte[] result = Encrypt(toEncryptArray, password);
       
return ConvertByteToString(result);
    }

///
    ///
字符串加密(加密为16进制字符串)
    ///
    ///
需要加密的字符串
    ///
加密后的字符串
    public
static string EncryptString(string inputString)
    {
       
return Encrypt(inputString, _passwd);
    }
   
#endregion

#region
解密
    ///
    ///
解密字节数组
    ///
    ///
要解密的字节数据
    /// 密码
    ///
    public
static byte[] Decrypt(byte[] inputData, string password)
    {
       
AesCryptoServiceProvider aes = new
AesCryptoServiceProvider();
       
aes.Key = GetKeyArray(password);
       
aes.Mode = _cipherMode;
       
aes.Padding = _paddingMode;
       
ICryptoTransform transform = aes.CreateDecryptor();
       
byte[] data = null;
       
try
       
{
           
data = transform.TransformFinalBlock(inputData, 0,
inputData.Length);
       
}
       
catch
       
{
           
return null;
       
}
       
aes.Clear();
       
return data;
    }

///
    ///
解密16进制的字符串为字符串
    ///
    ///
要解密的字符串
    /// 密码
    ///
字符串
    public
static string Decrypt(string inputString, string password)
    {
       
byte[] toDecryptArray = ConvertStringToByte(inputString);
       
string decryptString = _encoding.GetString(Decrypt(toDecryptArray,
password));
       
return decryptString;
    }

///
    ///
解密16进制的字符串为字符串
    ///
    ///
需要解密的字符串
    ///
解密后的字符串
    public
static string DecryptString(string inputString)
    {
       
return Decrypt(inputString, _passwd);
    }
   
#endregion
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

C#&nbsp;Andriod&nbsp;AES&nbsp;加密算法的更多相关文章

  1. AES对称加密算法原理

    原著:James McCaffrey 翻译:小刀人 原文出处:MSDN Magazine November 2003 (Encrypt It) 本文的代码下载:msdnmag200311AES.exe ...

  2. AES对称加密算法原理(转载)

    出处:http://www.2cto.com/Article/201112/113465.html 原著:James McCaffrey 翻译:小刀人 原文出处:MSDN Magazine Novem ...

  3. Java 加密 AES 对称加密算法

    版权声明:本文为博主原创文章,未经博主允许不得转载. [AES] 一种对称加密算法,DES的取代者. 加密相关文章见:Java 加密解密 对称加密算法 非对称加密算法 MD5 BASE64 AES R ...

  4. DES、RC4、AES等加密算法优势及应用

    [IT168 技术]1篇文章,1部小说被盗取,全靠维(si)权(bi)捍卫自己的原创权利.程序员捍卫自己珍贵的代码,全靠花式的加密算法.代码加密有多重要?程序员半年做出的产品,盗版者可能半天就能完全破 ...

  5. 使用openssl的aes各种加密算法

    #include <stdio.h> #include <string.h> #include <sys/types.h> #include <sys/sta ...

  6. AES对称加密算法实现:Java,C#,Golang,Python

    高级加密标准(Advanced Encryption Standard,简写AES),是一种用来替代DES的对称加密算法,相比DES,AES安全性更高,加密速度更快,因此被广泛使用. 理论上看,AES ...

  7. AES对称加密算法

    package cn.jsonlu.passguard.utils; import org.apache.commons.codec.binary.Base64; import javax.crypt ...

  8. AES前后加密算法代码

    首先下载aes.js加密工具类: 本文采用的是 AES/ECB/PKCS5Padding的加密方式进行加密的: js加密写法如下: <!DOCTYPE html> <html lan ...

  9. Java实现AES对称加密算法

    Java代码实现 import java.security.SecureRandom; import javax.crypto.Cipher; import javax.crypto.KeyGener ...

随机推荐

  1. ios -- 极光推送《2》--极光推送消息推送成功,但是手机收不到的解决方法

    1.确认证书是否与app的Bundle ID是否一致 2. 确认你的推送证书是否已经过期 3.确认你的APP_KEY是否和极光APP_KEY是否一致 4.正确调用bindChannel,并成功返回ap ...

  2. Xcode6中如何对scrollview进行自动布局(autolayout)

    本文转载至 http://www.cocoachina.com/ios/20141011/9871.html XCodeAutolayoutscrollView     Xcode6中极大的增强了IB ...

  3. 子串的索引 str.index(sub) sub必须存在

    ii.lstrip(' ')[0:2]=='//' ii.lstrip(' ').index('//')==0

  4. Nginx + Tomcat 应用证书启用 SSL

    第一部分 简述 - 附:相关概念 1 Nginx 是什么? - 2 Tomcat 是什么? - 3 SSL 是什么? Secure Sockets Layer,现在应该叫"TLS" ...

  5. Android Development Note-01

    Eclipse快捷键: 导包:ctrl+alt+o 格式化代码:ctrl+alt+f   MVC: M——Model V——View C——Control   android程序界面如何设计.调试 U ...

  6. 创建spring管理的自定义注解

    转自: http://blog.csdn.net/wuqiqing_1/article/details/52763372 Annotation其实是一种接口.通过Java的反射机制相关的API来访问A ...

  7. Java for LeetCode 131 Palindrome Partitioning

    Given a string s, partition s such that every substring of the partition is a palindrome. Return all ...

  8. NLP数据集大放送,再也不愁数据了!【上百个哦】

    奉上100多个按字母顺序排列的开源自然语言处理文本数据集列表(原始未结构化的文本数据),快去按图索骥下载数据自己研究吧! 数据集 Apache软件基金会公开邮件档案:截止到2011年7月11日全部公开 ...

  9. Linux- Linux自带定时调度Crontab使用详解

    Linux自带定时调度Crontab使用详解 在Linux当中,有一个自带的任务调度功能crontab,它是针对每个用户,每个用户都可以调度自己的任务. 示例:每分钟执行一次,将时间写入到指定文件当中 ...

  10. python读取文件后切片

    from itertools import islice with open(“1.txt") as f: for a in islice(f,0,2): print(a)