From 67265ef3fc7218ab2ab7db33e8d467a7c5d7b391 Mon Sep 17 00:00:00 2001 From: wolter Date: Thu, 5 Dec 2024 18:39:46 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20sm2=E5=8A=A0=E5=AF=86fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/utils/encrypt/sm2/sm2.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/utils/encrypt/sm2/sm2.go b/app/utils/encrypt/sm2/sm2.go index 6f9d745..40aaacb 100644 --- a/app/utils/encrypt/sm2/sm2.go +++ b/app/utils/encrypt/sm2/sm2.go @@ -56,7 +56,13 @@ func PrivateKeyToString(privateKey *sm2.PrivateKey) string { return strings.ToUpper(hex.EncodeToString(privateKey.D.Bytes())) } -func SM2Decrypt(cipherText, publicKey string, privateKey string) (string, error) { +func SM2Decrypt(cipherText, publicKey string, privateKey string) (content string, err error) { + defer func() { + if r := recover(); r != nil { + err = fmt.Errorf("SM2Decrypt error: %v", r) + } + }() + if cipherText == "" { return "", nil }