• JAVA加密算法


    一、AES

    高级加密标准(AES,Advanced Encryption Standard)为最常见的对称加密算法(微信小程序加密传输就是用这个加密算法的)。对称加密算法也就是加密和解密用相同的密钥,具体的加密流程如下:
    加密:明文P通过AES加密函数和密匙K进行加密,得到秘文C
    解密:秘文C通过AES解密函数和密匙K进行解密,得到明文P
    密钥,必须是16字节的长度,代码如下:
    
    1. public class AESExample {
    2. public static void main(String[] args) throws Exception {
    3. String plaintext = "Hello, AES!"; // 要加密的明文
    4. String key = "ThisIsASecretKey"; // 密钥,必须是16字节的长度
    5. byte[] encrypted = encrypt(plaintext, key);
    6. System.out.println("加密后的结果:" + encodeBase64(encrypted));
    7. String decrypted = decrypt(encrypted, key);
    8. System.out.println("解密后的结果:" + decrypted);
    9. }
    10. public static byte[] encrypt(String plaintext, String key) throws Exception {
    11. SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(StandardCharsets.UTF_8), "AES");
    12. Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
    13. cipher.init(Cipher.ENCRYPT_MODE, secretKey);
    14. return cipher.doFinal(plaintext.getBytes(StandardCharsets.UTF_8));
    15. }
    16. public static String decrypt(byte[] ciphertext, String key) throws Exception {
    17. SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(StandardCharsets.UTF_8), "AES");
    18. Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
    19. cipher.init(Cipher.DECRYPT_MODE, secretKey);
    20. byte[] decryptedBytes = cipher.doFinal(ciphertext);
    21. return new String(decryptedBytes, StandardCharsets.UTF_8);
    22. }
    23. public static String encodeBase64(byte[] bytes) {
    24. return Base64.getEncoder().encodeToString(bytes);
    25. }
    26. }

    二、RSA

     RSA加密算法是一种典型的非对称加密算法,它基于大数的因式分解数学难题,它也是应用最广泛的非对称加密算法。非对称加密是通过两个密钥(公钥-私钥)来实现对数据的加密和解密的。公钥用于加密,私钥用于解密,具体的加密流程如下:
    加密方:通过公钥和加密函数对明文进行加密
    解密方:通过解密函数和私钥对密文进行解密
    1. public class RSAExample {
    2. public static void main(String[] args) throws Exception {
    3. String plaintext = "Hello, RSA!"; // 要加密的明文
    4. KeyPair keyPair = generateKeyPair();
    5. PublicKey publicKey = keyPair.getPublic();
    6. PrivateKey privateKey = keyPair.getPrivate();
    7. byte[] encrypted = encrypt(plaintext, publicKey);
    8. System.out.println("加密后的结果:" + encodeBase64(encrypted));
    9. String decrypted = decrypt(encrypted, privateKey);
    10. System.out.println("解密后的结果:" + decrypted);
    11. }
    12. public static KeyPair generateKeyPair() throws Exception {
    13. KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
    14. keyPairGenerator.initialize(2048, new SecureRandom());
    15. return keyPairGenerator.generateKeyPair();
    16. }
    17. public static byte[] encrypt(String plaintext, PublicKey publicKey) throws Exception {
    18. Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
    19. cipher.init(Cipher.ENCRYPT_MODE, publicKey);
    20. return cipher.doFinal(plaintext.getBytes());
    21. }
    22. public static String decrypt(byte[] ciphertext, PrivateKey privateKey) throws Exception {
    23. Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
    24. cipher.init(Cipher.DECRYPT_MODE, privateKey);
    25. byte[] decryptedBytes = cipher.doFinal(ciphertext);
    26. return new String(decryptedBytes);
    27. }
    28. public static String encodeBase64(byte[] bytes) {
    29. return Base64.getEncoder().encodeToString(bytes);
    30. }
    31. }

    三、CRC

    循环冗余校验(Cyclic Redundancy Check, CRC)是一种根据网络数据包或电脑文件等数据产生简短固定位数校验码的一种散列函数,主要用来检测或校验数据传输或者保存后可能出现的错误。它是利用除法及余数的原理来作错误侦测的。
    1. public class CRCExample {
    2. public static void main(String[] args) {
    3. String data = "Hello, CRC!"; // 要计算CRC的数据
    4. long crcValue = calculateCRC(data);
    5. System.out.println("CRC校验值:" + crcValue);
    6. }
    7. public static long calculateCRC(String data) {
    8. CRC32 crc32 = new CRC32();
    9. crc32.update(data.getBytes());
    10. return crc32.getValue();
    11. }
    12. }

    四、MD5

    MD5常常作为文件的签名出现,我们在下载文件的时候,常常会看到文件页面上附带一个扩展名为.MD5 的文本或者一行字符,这行字符就是就是把整个文件当作原数据通过 MD5 计算后的值,我们下载文件后,可以用检查文件 MD5 信息的软件对下载到的文件在进行一次计算。两次结果对比就可以确保下载到文件的准确性。 另一种常见用途就是网站敏感信息加密,比如用户名密码,支付签名等等。随着 https 技术的普及,现在的网站广泛采用前台明文传输到后台,MD5 加密(使用偏移量)的方式保护敏感数据保护站点和数据安全
    1. public class MD5Example {
    2. public static void main(String[] args) {
    3. String plaintext = "Hello, MD5!"; // 要加密的明文
    4. String encrypted = encryptMD5(plaintext);
    5. System.out.println("加密后的结果:" + encrypted);
    6. }
    7. public static String encryptMD5(String plaintext) {
    8. try {
    9. MessageDigest md = MessageDigest.getInstance("MD5");
    10. byte[] hashBytes = md.digest(plaintext.getBytes());
    11. BigInteger hashNum = new BigInteger(1, hashBytes);
    12. String encrypted = hashNum.toString(16);
    13. while (encrypted.length() < 32) {
    14. encrypted = "0" + encrypted;
    15. }
    16. return encrypted;
    17. } catch (Exception e) {
    18. // 处理异常
    19. e.printStackTrace();
    20. }
    21. return null;
    22. }
    23. }

  • 相关阅读:
    【测试开发】一文带你了解什么是软件测试
    Day08React——第八天
    从Spring源码探究IOC初始化流程
    Node.js学习(二)
    mvc core基于Asp Net的印刷网站
    8. python str( )函数
    如何使用搜索功能精确筛选数据?
    LeetCode 152. 乘积最大子数组
    【Java Web】使用ajax在论坛中发布帖子
    根据平均值列出记录
  • 原文地址:https://blog.csdn.net/weixin_42172472/article/details/133777790