v0.0.12 #11

Merged
timi merged 2 commits from dev into master 2026-07-31 07:13:16 +00:00
Showing only changes of commit 92e60b9c5b - Show all commits
+1 -1
View File
@@ -21,7 +21,7 @@ public class Text {
public static String LETTER_NUMBER_POOL = LETTER_POOL + NUMBER_POOL; public static String LETTER_NUMBER_POOL = LETTER_POOL + NUMBER_POOL;
public static String PASSWORD_CHAR_POOL = LETTER_NUMBER_POOL + "!#$%&()*+,-./:;<=>?@[]^_`{|}~"; public static String PASSWORD_CHAR_POOL = LETTER_NUMBER_POOL + "!@#$%^&*-_=+[]{}|;:./?";
/** 十六进制小写 */ /** 十六进制小写 */
public static char[] HEX_DIGITS_LOWER = (NUMBER_POOL + "abcdef").toCharArray(); public static char[] HEX_DIGITS_LOWER = (NUMBER_POOL + "abcdef").toCharArray();