Skip to content

Commit 12a786c

Browse files
committed
Update README.
1 parent 014d05f commit 12a786c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NETCore.Encrypt [中文文档](http://www.cnblogs.com/piscesLoveCc/p/7423205.html)
22
[![NuGet](https://img.shields.io/nuget/v/NETCore.Encrypt.svg)](https://nuget.org/packages/NETCore.Encrypt)
3-
[![NETCore CLR](https://img.shields.io/badge/.NETCore%20Clr-3.1-brightgreen.svg)](https://www.microsoft.com/net/core)
3+
[![NET 6.0](https://img.shields.io/badge/.NET-6.0-brightgreen)](https://www.microsoft.com/net/core)
44
[![NetStandard 2.1](https://img.shields.io/badge/NetStandard-2.1-orange.svg)](https://www.microsoft.com/net/core)
55
[![license](https://img.shields.io/github/license/myloveCc/NETCore.Encrypt.svg)](https://github.com/myloveCc/NETCore.Encrypt/blob/master/License)
66
[![GitHub-Actions-Img]][GitHub-Actions-Url]
@@ -16,16 +16,16 @@ To install NETCore.Encrypt, run the following command in the [Package Manager Co
1616

1717
## Package Manager
1818
```
19-
Install-Package NETCore.Encrypt -Version 2.0.9.1
19+
Install-Package NETCore.Encrypt -Version 2.1.0
2020
```
2121
## .NET CLI
2222
```
23-
dotnet add package NETCore.Encrypt --version 2.0.9.1
23+
dotnet add package NETCore.Encrypt --version 2.1.0
2424
```
2525

2626
## PackageReference
2727
```
28-
<PackageReference Include="NETCore.Encrypt" Version="2.0.9.1" />
28+
<PackageReference Include="NETCore.Encrypt" Version="2.1.0" />
2929
```
3030

3131

@@ -174,7 +174,7 @@ dotnet add package NETCore.Encrypt --version 2.0.9.1
174174
var modulus = rsaKey.Modulus;
175175
```
176176

177-
- #### Rsa Sign and Verify methodNEW
177+
- #### Rsa Sign and Verify method
178178

179179
```csharp
180180
string rawStr = "xxx";
@@ -215,7 +215,7 @@ dotnet add package NETCore.Encrypt --version 2.0.9.1
215215
RSA rsa = EncryptProvider.RSAFromString(privateKey);
216216
```
217217

218-
- #### RSA with PEMNEW
218+
- #### RSA with PEM
219219

220220
```csharp
221221

@@ -243,7 +243,7 @@ dotnet add package NETCore.Encrypt --version 2.0.9.1
243243
var decryptedStr = EncryptProvider.RSADecryptWithPem(pemPrivateKey, enctypedStr);
244244

245245
```
246-
- #### RSA with PKCS #1 / PKCS #8 PRE
246+
- #### RSA with PKCS #1 / PKCS #8
247247

248248
```csharp
249249

0 commit comments

Comments
 (0)