[Android Pro] AES加密
reference to :http://blog.csdn.net/wfung_kwok/article/details/7766427 package com.secufity.aes; import java.util.UUID; import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import com.secufity.db.Base64; /** * * @author wfung_kwok * */ public class AES { static String e = "9238513401340235"; // 加密 public static String Encrypt(String src, String key) throws Exception { if (key == null) { System.out.print("Key为空null"); return null; } // 判断Key...