feat: sso 模块新增配置文件方式启用“不同 client 不同秘钥”能力

This commit is contained in:
click33
2025-04-25 21:40:05 +08:00
parent 476910dffb
commit 84506d49f0
9 changed files with 187 additions and 18 deletions

View File

@@ -74,6 +74,19 @@ public class SaSignConfig {
}
}
/**
* 复制对象
* @return /
*/
public SaSignConfig copy() {
SaSignConfig obj = new SaSignConfig();
obj.secretKey = this.secretKey;
obj.timestampDisparity = this.timestampDisparity;
obj.digestAlgo = this.digestAlgo;
obj.digestMethod = this.digestMethod;
return obj;
}
// -------------- 策略函数