MD5加密工具類

乾之骄子發表於2024-07-30
點選檢視程式碼
password = DigestUtils.md5DigestAsHex(password.getBytes());
        if (!password.equals(employee.getPassword())) {
            //密碼錯誤
            throw new PasswordErrorException(MessageConstant.PASSWORD_ERROR);
        }

相關文章