feat: sm2加密fix

This commit is contained in:
wolter 2024-12-05 18:39:46 +08:00
parent 2e938f241a
commit 67265ef3fc
1 changed files with 7 additions and 1 deletions

View File

@ -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
}