File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ) 【NEW 】【 PRE 】
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 ) 【NEW 】【 PRE 】
139139
140140 ```csharp
141141 var encryptedBytes = new byte []{xxx };
You can’t perform that action at this time.
0 commit comments