Merge branch 'refs/heads/dev/dev1.0' into feature/zhifu
This commit is contained in:
commit
fd57130499
|
@ -56,7 +56,13 @@ func PrivateKeyToString(privateKey *sm2.PrivateKey) string {
|
||||||
return strings.ToUpper(hex.EncodeToString(privateKey.D.Bytes()))
|
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 == "" {
|
if cipherText == "" {
|
||||||
return "", nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue