Skip to content

Commit d5d63e8

Browse files
committed
UPDATE README
1 parent e86ff8a commit d5d63e8

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】
96+
- #### Create DES Iv 【NEW】【PRE】
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) 【NEW
131+
- #### DES encrypt bytes with iv (CBC mode) 【NEWPRE
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) 【NEW
138+
- #### DES decrypt bytes with iv (CBC mode) 【NEWPRE
139139

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

0 commit comments

Comments
 (0)