|
|
@@ -42,7 +42,7 @@ public class PubkeyService {
|
|
|
public String decrypt(String cipherText) throws Exception {
|
|
|
String prikey = (String) caffeineCache.getIfPresent(CacheKeys.getRsaPrikeyKey());
|
|
|
if (prikey == null) {
|
|
|
- String msg = "私钥不存在";
|
|
|
+ String msg = "私钥不存在, 请重新刷新页面";
|
|
|
throw new Exception(msg);
|
|
|
}
|
|
|
|