From 2e938f241ac038e0dbbe34c34d27538da855b431 Mon Sep 17 00:00:00 2001 From: wolter Date: Wed, 4 Dec 2024 14:45:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:ras=E5=8A=A0=E5=AF=86fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/apicrypt/rsa.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/services/apicrypt/rsa.go b/app/services/apicrypt/rsa.go index 0a90d7f..dcb2595 100644 --- a/app/services/apicrypt/rsa.go +++ b/app/services/apicrypt/rsa.go @@ -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 {