From 05b0663c21318f0cbcb05b48693cacd3c9b493bd Mon Sep 17 00:00:00 2001 From: wolter Date: Mon, 12 Aug 2024 13:44:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=EF=BC=8C=E7=94=9F=E6=88=90?= =?UTF-8?q?=E5=AF=86=E9=92=A5=E5=AF=B9rsa=E5=8A=A0=E5=AF=86=E5=8E=BB?= =?UTF-8?q?=E6=8E=89=E6=8D=A2=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/utils/encrypt/rsa/rsa.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/utils/encrypt/rsa/rsa.go b/app/utils/encrypt/rsa/rsa.go index e4e02da..c5f958f 100644 --- a/app/utils/encrypt/rsa/rsa.go +++ b/app/utils/encrypt/rsa/rsa.go @@ -154,7 +154,9 @@ func GenerateKey() (string, string, error) { pubPem := pem.EncodeToMemory(pubBlock) pri := strings.Replace(string(privPem), "-----BEGIN RSA PRIVATE KEY-----\n", "", -1) pri = strings.Replace(pri, "\n-----END RSA PRIVATE KEY-----\n", "", -1) + pri = strings.Replace(pri, "\n", "", -1) pub := strings.Replace(string(pubPem), "-----BEGIN PUBLIC KEY-----\n", "", -1) pub = strings.Replace(pub, "\n-----END PUBLIC KEY-----\n", "", -1) + pub = strings.Replace(pub, "\n", "", -1) return pub, pri, nil }