feat: sm2加密fix
This commit is contained in:
parent
2e938f241a
commit
67265ef3fc
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue