@@ -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 $\color{#34a853}{ 【NEW】}\color{#fbbc05}{ 【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 】【PRE 】
131+ - #### DES encrypt bytes with iv (CBC mode ) $\ color {# 34a853 }{ 【NEW 】}\ color {# fbbc05 }{ 【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 】【PRE 】
138+ - #### DES decrypt bytes with iv (CBC mode ) $\ color {# 34a853 }{ 【NEW 】}\ color {# fbbc05 }{ 【PRE 】}$
139139
140140 ```csharp
141141 var encryptedBytes = new byte []{xxx };
@@ -168,7 +168,7 @@ dotnet add package NETCore.Encrypt --version 2.0.8
168168 var modulus = rsaKey .Modulus ;
169169 ```
170170
171- - #### Rsa Sign and Verify method 【NEW 】
171+ - #### Rsa Sign and Verify method $\ color {# 34a853 }{ 【NEW 】}$
172172
173173 ```csharp
174174 string rawStr = " xxx" ;
@@ -209,7 +209,7 @@ dotnet add package NETCore.Encrypt --version 2.0.8
209209 RSA rsa = EncryptProvider .RSAFromString (privateKey );
210210 ```
211211
212- - #### RSA with PEM 【NEW 】
212+ - #### RSA with PEM $\ color {# 34a853 }{ 【NEW 】}$
213213
214214 ```csharp
215215
0 commit comments