文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android AES加密工具类分享

2022-06-06 10:18

关注

1、AES加密工具类

java不支持PKCS7Padding,只支持PKCS5Padding。我们知道加密算法由算法+模式+填充组成,下一篇介绍iOS和Android通用的AES加密,本篇文章使用PKCS5Padding加密方式。


package com.example.aesdemo;
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);
  System.out.println(key);
  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;
 }
}

2、使用

新建Android工程


package com.example.aesdemo;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.util.Log; 
public class MainActivity extends Activity {
 protected void onCreate(Bundle savedInstanceState) {
 		super.onCreate(savedInstanceState);
 		setContentView(R.layout.activity_main);
	 String masterPassword = "a"; 
	 String originalText = "于"; 
	 try { 
	  String encryptingCode = AESHelper.encrypt(originalText,masterPassword); 
//	  System.out.println("加密结果为 " + encryptingCode); 
	  Log.i("加密结果为 ",encryptingCode); 
	  String decryptingCode = AESHelper.decrypt(encryptingCode,masterPassword); 
//	  System.out.println("解密结果为 " + decryptingCode); 
	  Log.i("解密结果",decryptingCode); 
	  } catch (Exception e) { 
	  // TODO Auto-generated catch block 
	  e.printStackTrace(); 
	 } 	
	}
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}
}

3、打印结果


09-19 10:41:05.467: I/加密结果为(707): E55C24701F6380478E1940ADDFD08D22
09-19 10:41:05.467: I/解密结果(707): 于
您可能感兴趣的文章:Android封装的http请求实用工具类Android实用的Toast工具类封装Android工具栏顶出转场动画的实现方法实例Android 数据存储之 FileInputStream 工具类及FileInputStream类的使用android自动工具类TextUtils使用详解android实用工具类分享(获取内存/检查网络/屏幕高度/手机分辨率)android开发教程之实现toast工具类Android开发中日期工具类DateUtil完整实例Android动画工具类的封装实战记录


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯