File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -90,10 +90,10 @@ Install-Package NETCore.Encrypt -Version 2.0.6
9090 ```
9191- #### DES encrypt bytes at version 2.0.6
9292
93- ```csharp
94- var srcBytes = new byte []{xxx };
95- var decryptedBytes = EncryptProvider .DESEncrypt (srcBytes , key );
96- ```
93+ ```csharp
94+ var srcBytes = new byte []{xxx };
95+ var decryptedBytes = EncryptProvider .DESEncrypt (srcBytes , key );
96+ ```
9797- #### DES decrypt
9898
9999 ```csharp
@@ -103,10 +103,10 @@ var decryptedBytes = EncryptProvider.DESEncrypt(srcBytes, key);
103103
104104- #### DES decrypt bytes at version 2.0.6
105105
106- ```csharp
107- var encryptedBytes = new byte []{xxx };
108- var decryptedBytes = EncryptProvider .DESDecrypt (encryptedBytes , key );
109- ```
106+ ```csharp
107+ var encryptedBytes = new byte []{xxx };
108+ var decryptedBytes = EncryptProvider .DESDecrypt (encryptedBytes , key );
109+ ```
110110
111111## RSA
112112
You can’t perform that action at this time.
0 commit comments