You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Program.cs
+23-30Lines changed: 23 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
usingSystem;
2
+
usingSystem.Collections.Generic;
2
3
usingSystem.IO;
3
4
usingSystem.Security.Cryptography;
4
5
@@ -8,65 +9,57 @@ class PaddingOracleAttack
8
9
{
9
10
publicstaticvoidMain()
10
11
{
11
-
stringoriginal="Here is some data to encrypt!";
12
+
stringhiddenMessage="I'd just like to interject for a moment. What you’re referring to as Linux, is in fact, GNU/Linux, or as I’ve recently taken to calling it, GNU plus Linux.";
12
13
13
-
// Create a new instance of the Aes
14
-
// class. This generates a new key and initialization
0 commit comments