File tree 1 file changed +8
-8
lines changed
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
90
90
```
91
91
- #### DES encrypt bytes at version 2.0.6
92
92
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
+ ```
97
97
- #### DES decrypt
98
98
99
99
```csharp
@@ -103,10 +103,10 @@ var decryptedBytes = EncryptProvider.DESEncrypt(srcBytes, key);
103
103
104
104
- #### DES decrypt bytes at version 2.0.6
105
105
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
+ ```
110
110
111
111
## RSA
112
112
You can’t perform that action at this time.
0 commit comments