Przeglądaj źródła

创建商品订单

kobe6258 5 miesięcy temu
rodzic
commit
8f098f1b6f
1 zmienionych plików z 0 dodań i 4 usunięć
  1. 0 4
      common/utils/auth/rsa_utils.go

+ 0 - 4
common/utils/auth/rsa_utils.go

@@ -40,10 +40,6 @@ func DecryptWithRSA(privateKey *rsa.PrivateKey, encrypted string) ([]byte, error
 		}
 		plaintext = append(plaintext, decryptedChunk...)
 	}
-	//hash, err := rsa.DecryptPKCS1v15(rand.Reader, privateKey, encKey)
-	//if err != nil {
-	//	return nil, err
-	//}
 	return plaintext, nil
 }