zhoushihao
2025-10-12 2986ce86c5a49d1456b6be561358c42e2b19913e
hangzhoumesParent/common/servicebase/src/main/java/com/mes/utils/MD5.java
@@ -8,8 +8,8 @@
    public static String encrypt(String strSrc) {
        try {
            char hexChars[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8',
                    '9', 'a', 'b', 'c', 'd', 'e', 'f' };
            char hexChars[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8',
                    '9', 'a', 'b', 'c', 'd', 'e', 'f'};
            byte[] bytes = strSrc.getBytes();
            MessageDigest md = MessageDigest.getInstance("MD5");
            md.update(bytes);