当前位置:   article > 正文

AES、SM、MD5、RSA、SHA256、DES加密工具类汇总_aes加密工具

aes加密工具

目录

简介

AES

SM

MD5

RSA

SHA256

DES


简介

有时候我们总要用到一些加解密的工具类,网上一找琳琅满目,可能随机找了一个发现根本不能用,也可能找到的加密出来的密文和别的不太一样(找个在线解密工具解不出来)不标准,因此我将常用的加密工具列举出来,并在下方附上加解密的示例代码,希望可以帮到你们;请多多收藏,方便使用的时候直接取出来使用;

AES

AES(Advanced Encryption Standard)是一种对称加密算法,使用相同的秘钥可以同时进行加密和解密。AES 提供了多种不同密钥长度的加密方式,包括 128 位、192 位和 256 位。在 Java 中,可以使用 javax.crypto 包中的 Cipher 类来实现 AES 加密和解密。

示例代码:

  1. import javax.crypto.Cipher;
  2. import javax.crypto.spec.SecretKeySpec;
  3. import java.security.Key;
  4. public class AESUtil {
  5. private static final String AES_ALGORITHM = "AES/ECB/PKCS5Padding";
  6. public static byte[] aesEncrypt(byte[] data, byte[] key) throws Exception {
  7. Key secretKey = new SecretKeySpec(key, "AES");
  8. Cipher cipher = Cipher.getInstance(AES_ALGORITHM);
  9. cipher.init(Cipher.ENCRYPT_MODE, secretKey);
  10. return cipher.doFinal(data);
  11. }
  12. public static byte[] aesDecrypt(byte[] encryptedData, byte[] key) throws Exception {
  13. Key secretKey = new SecretKeySpec(key, "AES");
  14. Cipher cipher = Cipher.getInstance(AES_ALGORITHM);
  15. cipher.init(Cipher.DECRYPT_MODE, secretKey);
  16. return cipher.doFinal(encryptedData);
  17. }
  18. }

SM

SM(国密)算法是在 AES 的基础上进一步优化的对称加密算法,由中国密码学家所提出。SM4 算法是 SM 系列算法的核心,其安全性与 AES 相当。和 AES 一样,SM4 也是一种分组密码,秘钥长度为 128 位。在 Java 中,可以使用 Bouncy Castle 提供的 SM4Engine 类来实现 SM4 加密和解密。

示例代码:

  1. import org.bouncycastle.crypto.BufferedBlockCipher;
  2. import org.bouncycastle.crypto.CipherKeyGenerator;
  3. import org.bouncycastle.crypto.engines.SM4Engine;
  4. import org.bouncycastle.crypto.generators.KeyGenerator;
  5. import org.bouncycastle.crypto.params.KeyParameter;
  6. import java.security.SecureRandom;
  7. public class SMUtil {
  8. private static final String SM_ALGORITHM = "SM4";
  9. public static byte[] smEncrypt(byte[] data, byte[] key) throws Exception {
  10. SM4Engine engine = new SM4Engine();
  11. engine.init(true, new KeyParameter(key));
  12. BufferedBlockCipher cipher = new BufferedBlockCipher(engine);
  13. byte[] out = new byte[cipher.getOutputSize(data.length)];
  14. int len = cipher.processBytes(data, 0, data.length, out, 0);
  15. cipher.doFinal(out, len);
  16. return out;
  17. }
  18. public static byte[] smDecrypt(byte[] encryptedData, byte[] key) throws Exception {
  19. SM4Engine engine = new SM4Engine();
  20. engine.init(false, new KeyParameter(key));
  21. BufferedBlockCipher cipher = new BufferedBlockCipher(engine);
  22. byte[] out = new byte[cipher.getOutputSize(encryptedData.length)];
  23. int len = cipher.processBytes(encryptedData, 0, encryptedData.length, out, 0);
  24. cipher.doFinal(out, len);
  25. return out;
  26. }
  27. public static byte[] generateSMKey() throws Exception {
  28. int keySize = 128;
  29. CipherKeyGenerator generator = new CipherKeyGenerator();
  30. generator.init(new KeyGenerationParameters(new SecureRandom(), keySize));
  31. return generator.generateKey();
  32. }
  33. }

MD5

MD5 是一种不可逆的哈希函数,可以将任意长度的输入数据转换成固定长度的输出数据。MD5 输出的结果通常是一个 128 位的二进制值,也可以表示为 32 位的十六进制字符串。在 Java 中,可以使用 java.security.MessageDigest 类来实现 MD5 哈希。

代码示例:

  1. import java.security.MessageDigest;
  2. public class MD5Util {
  3. public static String md5(String data) throws Exception {
  4. MessageDigest md = MessageDigest.getInstance("MD5");
  5. byte[] digest = md.digest(data.getBytes());
  6. return bytesToHexString(digest);
  7. }
  8. private static String bytesToHexString(byte[] bytes) {
  9. StringBuilder sb = new StringBuilder();
  10. for (byte b : bytes) {
  11. String hex = Integer.toHexString(b & 0xFF);
  12. if (hex.length() == 1) {
  13. sb.append('0');
  14. }
  15. sb.append(hex);
  16. }
  17. return sb.toString();
  18. }
  19. }

RSA

RSA 是一种非对称加密算法,它使用一个公钥和一个私钥来进行加密和解密。公钥可以公开,用于加密数据;私钥则应该保密,用于解密数据。RSA 的安全性基于大数分解难度定理。在 Java 中,可以使用 java.security.KeyPairGeneratorjavax.crypto.Cipher 类来实现 RSA 加密和解密。

示例代码:

  1. import javax.crypto.Cipher;
  2. import java.security.Key;
  3. import java.security.KeyPair;
  4. import java.security.KeyPairGenerator;
  5. public class RSAUtil {
  6. private static final String RSA_ALGORITHM = "RSA/ECB/PKCS1Padding";
  7. public static byte[] rsaEncrypt(byte[] data, Key publicKey) throws Exception {
  8. Cipher cipher = Cipher.getInstance(RSA_ALGORITHM);
  9. cipher.init(Cipher.ENCRYPT_MODE, publicKey);
  10. return cipher.doFinal(data);
  11. }
  12. public static byte[] rsaDecrypt(byte[] encryptedData, Key privateKey) throws Exception {
  13. Cipher cipher = Cipher.getInstance(RSA_ALGORITHM);
  14. cipher.init(Cipher.DECRYPT_MODE, privateKey);
  15. return cipher.doFinal(encryptedData);
  16. }
  17. public static KeyPair generateRSAKeyPair(int keySize) throws Exception {
  18. KeyPairGenerator generator = KeyPairGenerator.getInstance("RSA");
  19. generator.initialize(keySize);
  20. return generator.generateKeyPair();
  21. }
  22. }

SHA256

SHA256 是一种哈希算法,它和 MD5 一样都是一种不可逆的哈希函数。SHA256 最终输出的结果是一个长度为 256 位的二进制值,通常可以表示为 64 位十六进制字符串。在 Java 中,可以使用 java.security.MessageDigest 类来实现 SHA256 哈希。

示例代码:

  1. import java.security.MessageDigest;
  2. public class SHA256Util {
  3. public static String sha256(String data) throws Exception {
  4. MessageDigest md = MessageDigest.getInstance("SHA-256");
  5. byte[] digest = md.digest(data.getBytes());
  6. return bytesToHexString(digest);
  7. }
  8. private static String bytesToHexString(byte[] bytes) {
  9. StringBuilder sb = new StringBuilder();
  10. for (byte b : bytes) {
  11. String hex = Integer.toHexString(b & 0xFF);
  12. if (hex.length() == 1) {
  13. sb.append('0');
  14. }
  15. sb.append(hex);
  16. }
  17. return sb.toString();
  18. }
  19. }

DES

DES(Data Encryption Standard)是一种对称加密算法,使用相同的秘钥可以同时进行加密和解密。DES 的秘钥长度为 56 位,已经不再被视为安全的加密算法。在 Java 中,可以使用 javax.crypto 包中的 Cipher 类来实现 DES 加密和解密。

示例代码:

  1. import javax.crypto.Cipher;
  2. import javax.crypto.spec.SecretKeySpec;
  3. import java.security.Key;
  4. public class DESUtil {
  5. private static final String DES_ALGORITHM = "DES/ECB/PKCS5Padding";
  6. public static byte[] desEncrypt(byte[] data, byte[] key) throws Exception {
  7. Key secretKey = new SecretKeySpec(key, "DES");
  8. Cipher cipher = Cipher.getInstance(DES_ALGORITHM);
  9. cipher.init(Cipher.ENCRYPT_MODE, secretKey);
  10. return cipher.doFinal(data);
  11. }
  12. public static byte[] desDecrypt(byte[] encryptedData, byte[] key) throws Exception {
  13. Key secretKey = new SecretKeySpec(key, "DES");
  14. Cipher cipher = Cipher.getInstance(DES_ALGORITHM);
  15. cipher.init(Cipher.DECRYPT_MODE, secretKey);
  16. return cipher.doFinal(encryptedData);
  17. }
  18. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/1019033
推荐阅读
相关标签
  

闽ICP备14008679号