import java.io.UnsupportedEncodingException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.SecureRandom; import javax.crypto.BadPaddingException; import javax.crypto.Cipher; import javax.crypto.IllegalBlockSizeException; import javax.crypto.KeyGenerator; import javax.crypto.NoSuchPaddingException; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import org.apache.axis.encoding.Base64; public class AES { private static int length=128; /** * 加密 * * @param content * 需要加密的内容 * @param password * 加密密码 * @return * @throws NoSuchAlgorithmException * @throws NoSuchPaddingException * @throws UnsupportedEncodingException * @throws InvalidKeyException * @throws BadPaddingException * @throws IllegalBlockSizeException */ private static byte[] encrypt(String content, String password) throws Exception { KeyGenerator kgen = KeyGenerator.getInstance("AES"); SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG" ); secureRandom.setSeed(password.getBytes()); kgen.init(length, secureRandom); SecretKey secretKey = kgen.generateKey(); byte[] enCodeFormat = secretKey.getEncoded(); SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES"); Cipher cipher = Cipher.getInstance("AES");// 创建密码器 byte[] byteContent = content.getBytes("utf-8"); cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化 byte[] result = cipher.doFinal(byteContent); return result; // 加密 } /** * 解密 * * @param content * 待解密内容 * @param password * 解密密钥 * @return */ private static byte[] decrypt(byte[] content, String password) throws Exception { KeyGenerator kgen = KeyGenerator.getInstance("AES"); SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG" ); secureRandom.setSeed(password.getBytes()); kgen.init(length, secureRandom); SecretKey secretKey = kgen.generateKey(); byte[] enCodeFormat = secretKey.getEncoded(); SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES"); Cipher cipher = Cipher.getInstance("AES");// 创建密码器 cipher.init(Cipher.DECRYPT_MODE, key);// 初始化 byte[] result = cipher.doFinal(content); return result; // 加密 } // /** // * 将二进制转换成16进制 // * // * @param buf // * @return // */ // public static String parseByte2HexStr(byte buf[]) { // StringBuffer sb = new StringBuffer(); // for (int i = 0; i < buf.length; i++) { // String hex = Integer.toHexString(buf[i] & 0xFF); // if (hex.length() == 1) { // hex = '0' + hex; // } // sb.append(hex.toUpperCase()); // } // return sb.toString(); // } // // /** // * 将16进制转换为二进制 // * // * @param hexStr // * @return // */ // public static byte[] parseHexStr2Byte(String hexStr) { // if (hexStr.length() < 1) // return null; // byte[] result = new byte[hexStr.length() / 2]; // for (int i = 0; i < hexStr.length() / 2; i++) { // int high = Integer.parseInt(hexStr.substring(i * 2, i * 2 + 1), 16); // int low = Integer.parseInt(hexStr.substring(i * 2 + 1, i * 2 + 2), // 16); // result[i] = (byte) (high * 16 + low); // } // return result; // } /** * 加密 * * @param content * 需要加密的内容 * @param password * 加密密码 * @return */ public static byte[] encrypt2(String content, String password) { try { SecretKeySpec key = new SecretKeySpec(password.getBytes(), "AES"); Cipher cipher = Cipher.getInstance("AES/ECB/NoPadding"); byte[] byteContent = content.getBytes("utf-8"); cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化 byte[] result = cipher.doFinal(byteContent); return result; // 加密 } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } catch (NoSuchPaddingException e) { e.printStackTrace(); } catch (InvalidKeyException e) { e.printStackTrace(); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (IllegalBlockSizeException e) { e.printStackTrace(); } catch (BadPaddingException e) { e.printStackTrace(); } return null; } public static String encrypt2Str(String content, String password) throws Exception { byte[] encryptResult = encrypt(content, password); return Base64.encode(encryptResult); } public static String decrypt2Str(String content, String password) throws Exception { byte[] decryptResult = decrypt(Base64.decode(content), password); return new String(decryptResult,"UTF-8"); } public static void main(String[] args) throws Exception { String content = "t太阳est地"; String password = "12345678"; // 加密 System.out.println("加密前:" + content); String tt4 = encrypt2Str(content, password); System.out.println(new String(tt4)); // 解密 String d = decrypt2Str(tt4, password); System.out.println("解密后:" + d); // 加密前:t太阳est地 // Bpf0jyJDj/pVHaRf66+OMA== // 解密后:t太阳est地 } }
其中的org.apache.axis.encoding.Base64,可以直接用附件中的Base64代替(直接从axis反编译而得)
相关推荐
RSA公钥加密/私钥解密。RSA签名/验签。各种散列:MD2/MD4/MD5,SHA/SHA1/SHA256/SHA384/SHA512。HMAC算法,支持 hmac-md5 hmac-sha1 hmac-sha256 hmac-384 hmac-sha512。PEM文件纯易语言解析,载入,导出。FPX文件...
这个DESEncrypt工具类是针对Windows和Linux系统设计的,确保在不同操作系统下都能进行一致的加密和解密操作,避免因环境差异导致的解密失败问题。主要关注点在于如何在不同系统中生成一致的随机数种子,以确保加密...
在这个项目中,我们关注的是"AES+RSA加密解密",这是两种广泛使用的加密算法,适用于JavaScript和Java环境中的前后端数据交换。下面将详细介绍这两个加密算法以及如何实现它们的互通。 **AES(Advanced Encryption ...
总的来说,解决AES加密算法在Linux下解密失败的问题,关键在于理解和调试加密过程中的各个步骤,包括密钥生成、加密解密模式、编码方式以及潜在的系统差异。通过检查这些方面,可以定位问题并找到相应的解决方案。
在Java和JavaScript中,我们都使用`javax.crypto.Cipher`类来处理AES加密和解密。 在Java中,我们可以使用以下步骤实现AES加解密: 1. 导入必要的库:`import javax.crypto.Cipher; import javax.crypto.spec....
在ASP(Active Server Pages)开发中,为了保护敏感数据或者防止源代码被轻易查看,开发者经常需要使用加密和解密...压缩包中的“ASP常用加密解密”可能包含更多实例和详细教程,可以帮助你进一步理解并实践这些方法。
本文将深入探讨Base64编码原理,JavaScript中的实现方式,以及如何封装一个Base64的加密解密工具。 Base64编码的基本原理是将每3个字节(24位)的数据拆分为4组,每组6位,然后将这6位二进制数据转换为其对应的...
本文将深入探讨“网狐32位MD5加密”和“20位异或加密解密”这两种技术,以及它们在C++编程环境中的实现。 MD5(Message-Digest Algorithm 5)是一种广泛使用的哈希函数,它能够将任意长度的数据转化为固定长度的...
JavaScript中可以使用Node.js的crypto模块或Web Cryptography API(浏览器支持)来实现AES加密。例如,使用Node.js: ```javascript const crypto = require('crypto'); const cipher = crypto.createCipheriv...
React本机aes gcm密码适用于React Native的AES-GCM加密/解密要求iOS> = 13.0 Android> = 26安装npm install react-native-aes-gcm-crypto用法import AesGcmCrypto from 'react-native-aes-gcm-crypto' ;const key = ...
- 这两个函数在旧版的IE浏览器中可能不支持,需要引入polyfill或者使用第三方库如`Buffer`(Node.js环境)或`window.atob`(浏览器环境)来兼容。 - Base64不是一种加密算法,而是一种编码方式,它的主要目的是...
### 7种JS加密解密方法详解 在前端开发领域,JavaScript作为一种强大的脚本语言,不仅被用于构建交互式网页,还广泛应用于数据处理、安全防护等多个方面。本文将详细介绍七种JavaScript加密解密方法,这些方法对于...
该C语言课程设计的目标是实现一个文件加密解密系统,包含图形用户界面。设计过程分为三个主要部分:设计图形用户界面、实现文件加密以及实现文件解密。 在设计图形用户界面时,开发者需要掌握基本的窗口和控制元素...
解决了在文件加密是在lunix服务器和window服务器生成的skey不一样的问题
以下是对`js实现的Base64的加密解密方法`的详细解释。 1. **Base64编码原理**: - Base64使用64个可打印的ASCII字符来表示二进制数据,这64个字符包括大小写字母(A-Z,a-z)、数字(0-9)以及"+"和"/",还有一个...
通过阅读和运行这些代码,可以加深对AES加密模式的理解,并学习如何在实际项目中应用它们。调试工具可以帮助开发者直观地查看加密和解密过程,以及检查输出结果是否符合预期。 总之,AES GCM、ECB和KeyWrap都是AES...
### 1. 介绍 windows系统下文件加密工具,采用java开发,用于保护隐私最适合不过啦!eclipse工具开发,采用swing组件做页面。 ...- 使用AES对称密钥加密文件,支持视频、音乐、图片、各种文档资料
1. **预处理阶段**:对原始的Java源码或编译后的字节码进行加密,通常使用对称加密算法,如AES。加密后的代码无法直接被Java虚拟机识别和执行。 2. **运行时解密**:当应用启动时,利用jvmti在类加载阶段介入,拦截...
这些算法使用相同的密钥进行加密和解密,效率较高,适合大量数据的加密。在JSP中,可以使用Java的`javax.crypto`包来实现。 2. 非对称加密:如RSA、DSA等。非对称加密使用一对公钥和私钥,公钥公开,私钥保密,用于...