From db287aac9eb5032b1158b405a9b4807301467ed3 Mon Sep 17 00:00:00 2001
From: zhouxiang <zhouxiang>
Date: 星期四, 24 三月 2022 17:48:03 +0800
Subject: [PATCH] 添加redis获取整个hashKey数据和单个hashKey数据方法

---
 src/main/java/com/hx/util/rsa/RSAUtil.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/hx/util/rsa/RSAUtil.java b/src/main/java/com/hx/util/rsa/RSAUtil.java
index 45349a3..20bb3f0 100644
--- a/src/main/java/com/hx/util/rsa/RSAUtil.java
+++ b/src/main/java/com/hx/util/rsa/RSAUtil.java
@@ -64,7 +64,7 @@
             byte[] bytes = cipher.doFinal(content.getBytes());
             return byte2Base64(bytes);
         } catch (Exception e) {
-            logger.error("鍏挜鍔犲瘑澶辫触{}", e);
+            //logger.error("鍏挜鍔犲瘑澶辫触{}", e);
         }
         return null;
     }
@@ -77,7 +77,7 @@
             byte[] bytes = cipher.doFinal(base642Byte(content));
             return new String(bytes);
         } catch (Exception e) {
-            logger.error("绉侀挜瑙e瘑澶辫触{}", e);
+            //logger.error("绉侀挜瑙e瘑澶辫触{}", e);
         }
         return null;
     }

--
Gitblit v1.8.0