feat:ras加密fix

This commit is contained in:
wolter 2024-12-04 14:45:34 +08:00
parent d4fa337e3f
commit 2e938f241a
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@ func NewRsa(app *appmodel.App) ApiCrypt {
}
func (r *Rsa) Encrypt(data string) (encryptData []byte, errCode int) {
if r.App.PublicKey == "" {
if r.App.MerchantPublicKey == "" {
return nil, errorcode.AppRsaEncryptKeyNotFound
}
publicKeyPEM := `-----BEGIN PUBLIC KEY-----
` + r.App.PublicKey + `
` + r.App.MerchantPublicKey + `
-----END PUBLIC KEY-----`
encryptByte, err := rsa.Encrypt(publicKeyPEM, data)
if err != nil {