forked from plusone/plusone-commons
19 lines
557 B
Java
19 lines
557 B
Java
|
package xyz.zhouxy.plusone.commons.util;
|
||
|
|
||
|
import java.security.SecureRandom;
|
||
|
|
||
|
public final class RandomUtil {
|
||
|
private RandomUtil() {
|
||
|
throw new IllegalStateException("Utility class");
|
||
|
}
|
||
|
|
||
|
public static String secureRandomStr(char[] sourceCharacters, int length) {
|
||
|
SecureRandom random = new SecureRandom();
|
||
|
char[] result = new char[length];
|
||
|
for (int i = 0; i < length; i++) {
|
||
|
result[i] = sourceCharacters[random.nextInt(sourceCharacters.length)];
|
||
|
}
|
||
|
return String.valueOf(result);
|
||
|
}
|
||
|
}
|