master
fst1996 2023-11-30 15:12:52 +08:00
parent b658eb7362
commit 7e909132f1
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class Md5Util {
public static String md5(GetTopicReq getTopicReq) {
try {
java.security.MessageDigest md = java.security.MessageDigest.getInstance("MD5");
String str = getTopicReq.getTimeString() + getTopicReq.getUserName() + getTopicReq.getRandomStr() + getTopicReq.getCarVin();
String str = getTopicReq.getTimeString() + getTopicReq.getUserName() + getTopicReq.getRandomStr() + getTopicReq.getVin();
byte[] array = md.digest(str.getBytes());
StringBuffer sb = new StringBuffer();
for (int i = 0; i < array.length; ++i) {