• CBC算法实践Demo


    效果图
    在这里插入图片描述

    全部代码

    package encryption001;
    
    import javax.crypto.Cipher;
    import javax.crypto.spec.SecretKeySpec;
    import java.util.Base64;
    
    public class EncryptionDemo {
    
        // 加密算法
        private static final String ALGORITHM = "AES";
        // 加密模式和填充方式
        private static final String TRANSFORMATION = "AES/ECB/PKCS5Padding";
        // 密钥,这里是一个简单的硬编码密钥,实际使用中需要更复杂的密钥管理机制
        private static final String SECRET_KEY = "MySecretKey12345"; // 16字符的密钥
    
        /**
         * 加密函数
         *
         * @param plainText 待加密的字符串
         * @return 加密后的Base64编码字符串
         */
        public static String encrypt(String plainText) {
            try {
                // 创建用于AES加密的密钥规格
                SecretKeySpec key = new SecretKeySpec(SECRET_KEY.getBytes(), ALGORITHM);
    
                // 创建AES加密器
                Cipher cipher = Cipher.getInstance(TRANSFORMATION);
    
                // 初始化加密器为加密模式,并使用密钥
                cipher.init(Cipher.ENCRYPT_MODE, key);
    
                // 对明文进行加密,得到加密后的字节数组
                byte[] encryptedBytes = cipher.doFinal(plainText.getBytes());
    
                // 将加密后的字节数组转换成Base64编码的字符串
                return Base64.getEncoder().encodeToString(encryptedBytes);
            } catch (Exception e) {
                // 捕捉可能的异常,并打印错误信息
                e.printStackTrace();
                return null;
            }
        }
    
        /**
         * 解密函数
         *
         * @param encryptedText 加密后的Base64编码字符串
         * @return 解密后的字符串
         */
        public static String decrypt(String encryptedText) {
            try {
                // 创建用于AES解密的密钥规格
                SecretKeySpec key = new SecretKeySpec(SECRET_KEY.getBytes(), ALGORITHM);
    
                // 创建AES解密器
                Cipher cipher = Cipher.getInstance(TRANSFORMATION);
    
                // 初始化解密器为解密模式,并使用密钥
                cipher.init(Cipher.DECRYPT_MODE, key);
    
                // 对Base64编码的加密字符串进行解码,得到加密后的字节数组
                byte[] encryptedBytes = Base64.getDecoder().decode(encryptedText);
    
                // 对加密后的字节数组进行解密,得到原始的字节数组
                byte[] decryptedBytes = cipher.doFinal(encryptedBytes);
    
                // 将解密后的字节数组转换成字符串
                return new String(decryptedBytes);
            } catch (Exception e) {
                // 捕捉可能的异常,并打印错误信息
                e.printStackTrace();
                return null;
            }
        }
    
        /**
         * 主函数,用于测试加解密功能
         *
         * @param args 命令行参数
         */
        public static void main(String[] args) {
            // 待加密的原始文本
            String originalText = "Hello, Encryption!";
            System.out.println("Original Text: " + originalText);
    
            // 调用加密函数,得到加密后的字符串
            String encryptedText = encrypt(originalText);
            System.out.println("Encrypted Text: " + encryptedText);
    
            // 调用解密函数,得到解密后的字符串
            String decryptedText = decrypt(encryptedText);
            System.out.println("Decrypted Text: " + decryptedText);
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
  • 相关阅读:
    Python NLP 自然语言处理
    OpenGL ES 学习(三) -- 绘制平面图形
    机器学习实战读书笔记——端到端的机器学习项目
    Hadoop集群配置
    AE动画调整
    typescript --object对象类型
    Linux 用户层、内核层和MMU
    于 STM32 的 IAP 总结
    [经典力扣面试题]135. 分发糖果
    【Angular】01安装与脚手架
  • 原文地址:https://blog.csdn.net/qq_45591895/article/details/134546318