Skip to content

Commit 4f20d92

Browse files
authored
Update README.md
1 parent 7f9556c commit 4f20d92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ dotnet add package NETCore.Encrypt --version 2.0.8
9393
var desKey = EncryptProvider.CreateDesKey();
9494

9595
```
96-
- #### Create DES Iv 【NEW】【PRE】
96+
- #### Create DES Iv 【NEW】
9797

9898
```csharp
9999

@@ -128,14 +128,14 @@ dotnet add package NETCore.Encrypt --version 2.0.8
128128
var decryptedBytes = EncryptProvider.DESDecrypt(encryptedBytes, key);
129129
```
130130

131-
- #### DES encrypt bytes with iv (CBC mode)【NEWPRE
131+
- #### DES encrypt bytes with iv (CBC mode)【NEW
132132

133133
```csharp
134134
var srcBytes = new byte[]{xxx};
135135
var encrypted = EncryptProvider.DESEncrypt(srcBytes, key, iv);
136136
```
137137

138-
- #### DES decrypt bytes with iv (CBC mode)【NEWPRE
138+
- #### DES decrypt bytes with iv (CBC mode)【NEW
139139

140140
```csharp
141141
var encryptedBytes = new byte[]{xxx};

0 commit comments

Comments
 (0)