Add TODO: 请在不同的环境使用不同的key(即更换jwks.json中的文件内容); 如何生成不同的key请参考 JwksTest.java 类. / 以及必要注释

config
shengzhaoli.shengz 9 months ago
parent 61c66304c4
commit 373f738168

@ -66,6 +66,7 @@ public class OAuth2ServerConfiguration {
/**
* keystore file name
* TODO: 使key(jwks.json); key JwksTest.java .
*
* @since 3.0.0
*/
@ -213,6 +214,7 @@ public class OAuth2ServerConfiguration {
/**
* / source
* key, 使
* TODO: 使key(jwks.json); key JwksTest.java .
*
* @return JWKSource
* @since 3.0.0

@ -38,6 +38,7 @@ public class JwksTest {
// Curve point = Curve.P_521;
ECKeyGenerator ecKeyGenerator = new ECKeyGenerator(point);
//key 使用范围请根据业务场景设置, 范围越小越好
ecKeyGenerator.keyOperations(Set.of(
SIGN,
VERIFY,
@ -64,10 +65,12 @@ public class JwksTest {
*/
@Test
void jwkRS() throws Exception {
//size 至少 1024, 推荐 2048
RSAKeyGenerator rsaKeyGenerator = new RSAKeyGenerator(2048);
// keyId 必须唯一
rsaKeyGenerator.keyID("sos-rsa-kid2")
.algorithm(JWSAlgorithm.RS256)
//key 使用范围请根据业务场景设置, 范围越小越好
.keyOperations(Set.of(
SIGN,
VERIFY,

Loading…
Cancel
Save