style: add javadoc and code format.

This commit is contained in:
Suomm 2023-07-02 17:08:46 +08:00
parent 6ad26ff398
commit d39e3b47cc

View File

@ -18,9 +18,13 @@ package com.mybatisflex.core.audit.http;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
/**
* Hash 工具类
*/
public class HashUtil {
private HashUtil() {}
private HashUtil() {
}
private static final char[] HEX_DIGITS = "0123456789abcdef".toCharArray();