修改密钥生成.

https://github.com/baomidou/mybatis-plus/issues/6162
This commit is contained in:
nieqiurong 2024-05-14 22:29:54 +08:00
parent b72273a9db
commit d4f3c4cbc6

View File

@ -21,8 +21,8 @@ import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.StandardCharsets;
import java.security.NoSuchAlgorithmException;
import java.util.Base64;
import java.util.Random;
/**
* AES CBC模式加密工具类
@ -32,6 +32,8 @@ import java.util.Base64;
*/
public class AES {
private static final String CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
/**
* 加密
*
@ -100,10 +102,17 @@ public class AES {
/**
* 生成一个随机字符串密钥
*
* @return
* @throws NoSuchAlgorithmException
* @return 密钥
*/
public static String generateRandomKey() {
return IdWorker.get32UUID().substring(0, 16);
Random random = new Random();
StringBuilder buffer = new StringBuilder();
int keySize = 16;
int length = CHARS.length();
while (keySize-- != 0) {
buffer.append(CHARS.charAt(random.nextInt(length)));
}
return buffer.toString();
}
}