Skip to content

Commit a7fb65a

Browse files
committed
Remove empty lines
1 parent 14a23b6 commit a7fb65a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Tests/System.Security.CryptographyTests/AESTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public class AESTests
1616
static byte[] clearDataArray = new byte[] { 78, 97, 110, 111, 102, 114, 97, 109, 101, 119, 111, 114, 107, 0, 0, 0 };
1717
static byte[] key = new byte[16] { 62, 110, 51, 201, 203, 48, 62, 150, 90, 219, 42, 55, 221, 109, 13, 93 };
1818

19-
2019
[TestMethod]
2120
public void TestAesECBEncryptionAndDecryption()
2221
{
@@ -31,7 +30,6 @@ public void TestAesECBEncryptionAndDecryption()
3130
var enData = aes.Encrypt(key, clearTextByteArrayWithPadding);
3231
CollectionAssert.AreEqual(cipherDataArray,enData);
3332

34-
3533
// Decrypt the bytes
3634
var decryptedByteArray = aes.Decrypt(enData, key);
3735
CollectionAssert.AreEqual(clearDataArray, decryptedByteArray);

0 commit comments

Comments
 (0)