This commit is contained in:
牛子源 2025-04-25 14:50:40 +08:00
parent 16db9655bf
commit b355048d77
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ public class AuthController extends BaseController {
String ciphertext = parmsUtil.getString("ciphertext", "请输入密文"); String ciphertext = parmsUtil.getString("ciphertext", "请输入密文");
String data= RsaUtil.decryp(ciphertext); String data= RsaUtil.decryp(ciphertext);
config.set("common","cert",ciphertext); config.set("common","cert",ciphertext);
return success(JSONObject.parseObject(data)); return success();
} }
@RequestMapping("set") @RequestMapping("set")
public Result<JSONObject> get() { public Result<JSONObject> get() {