• smutil数据加密


    引入依赖

     >
                >cn.hutool>
                >hutool-crypto>
                >5.8.21>
            >
            >
                >org.bouncycastle>
                >bcprov-jdk15on>
                >1.70>
            >
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    map加密解密 list加密解密 Set> 加密解密呀

     public static void main(String[] args) {
          /*  Map map = new HashMap<>();
            map.put("key","qwrw");
            String o =  JSON.toJSONString(map);
    
            SM4 sm4 = SmUtil.sm4("0123456789ABCDEF".getBytes());
            String str = sm4.encryptHex(o);
            System.out.println("加密后:"+str);
            String s = sm4.decryptStr("解密后:"+str);
            System.out.println(s);*/
    
            // 创建一个包含 Map 对象的 Set 集合
           /* Set> dataSet = new HashSet<>();
            Map map1 = new HashMap<>();
            map1.put("name", "Alice");
            map1.put("age", 25);
            dataSet.add(map1);
    
            Map map2 = new HashMap<>();
            map2.put("name", "Bob");
            map2.put("age", 30);
            dataSet.add(map2);
    
            // 将 Set> 转换为字节数组
            byte[] data;
            try (
                    ByteArrayOutputStream bos = new ByteArrayOutputStream();
                    ObjectOutput out = new ObjectOutputStream(bos)
            ) {
                out.writeObject(dataSet);
                data = bos.toByteArray();
            } catch (IOException e) {
                e.printStackTrace();
                return;
            }
    
            // 使用 SM4 算法对字节数组进行加密
            SM4 sm41 = SmUtil.sm4("0123456789ABCDEF".getBytes());
            String encrypted = sm41.encryptHex(data);
    
            System.out.println("Encrypted text: " + encrypted);
            // 使用 SM4 算法对密文进行解密
            byte[] decryptedData;
            try {
                SM4 sm42 = SmUtil.sm4("0123456789ABCDEF".getBytes());
                decryptedData = sm42.decrypt(HexUtil.decodeHex(encrypted));
            } catch (Exception e) {
                e.printStackTrace();
                return;
            }
    
            // 将解密后的字节数组转换为 Set> 集合
            Set> decryptedSet;
            try (
                    ByteArrayInputStream bis = new ByteArrayInputStream(decryptedData);
                    ObjectInput in = new ObjectInputStream(bis)
            ) {
                decryptedSet = (Set>) in.readObject();
            } catch (IOException | ClassNotFoundException e) {
                e.printStackTrace();
                return;
            }
    
            // 输出解密后的集合内容
            for (Map map : decryptedSet) {
                System.out.println("Name: " + map.get("name") + ", Age: " + map.get("age"));
            }
    */
    
    
           /* // 创建一个示例的 List 集合
            List list = new ArrayList<>();
            User user = new User();
            user.setName("请教的");
            user.setAge("123");
            User user1 = new User();
            user1.setName("第二个");
            user1.setAge("28");
            list.add(user);
            list.add(user1);
    
            // 将 List 转换为字节数组
            byte[] data;
            try (
                    ByteArrayOutputStream bos = new ByteArrayOutputStream();
                    ObjectOutput out = new ObjectOutputStream(bos)
            ) {
                out.writeObject(list);
                data = bos.toByteArray();
            } catch (IOException e) {
                e.printStackTrace();
                return;
            }
    
            // 使用 SM4 算法对字节数组进行加密
            SM4 sm43 = SmUtil.sm4("0123456789ABCDEF".getBytes());
            String encrypted = sm43.encryptHex(data);
    
            System.out.println("Encrypted text: " + encrypted);
    
            // 使用 SM4 算法对密文进行解密
            byte[] decryptedData;
            try {
                SM4 sm44 = SmUtil.sm4("0123456789ABCDEF".getBytes());
                decryptedData = sm44.decrypt(HexUtil.decodeHex(encrypted));
            } catch (Exception e) {
                e.printStackTrace();
                return;
            }
    
            // 将解密后的字节数组转换为原始的 List 集合
            List decryptedList;
            try (
                    ByteArrayInputStream bis = new ByteArrayInputStream(decryptedData);
                    ObjectInput in = new ObjectInputStream(bis)
            ) {
                decryptedList = (List) in.readObject();
            } catch (IOException | ClassNotFoundException e) {
                e.printStackTrace();
                return;
            }
    
            // 输出解密后的集合内容
            for (User users : decryptedList) {
                System.out.println("Name: " + users.getName() + ", Age: " + users.getAge());
            }*/
        }
    
    
    • 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
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
  • 相关阅读:
    三十二、【进阶】hash索引结构
    大一学生想自学web安全
    Spring Authorization Server OAuth 2.0获取授权码流程
    秋招面试题系列- - -Java工程师(五)
    深入理解Java虚拟机读书笔记--5 JVM工具
    第六章 将对象映射到 XML - 控制对象值属性的映射形式
    qsort库函数的使用
    【Maven学习】3.7 实验七:测试依赖的传递性
    数字IC前端学习笔记:时钟切换电路
    全面了解v-if和v-show的区别
  • 原文地址:https://blog.csdn.net/xiaoshitou_s/article/details/134275611