We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9443d9c commit f5793a4Copy full SHA for f5793a4
1 file changed
src/SafeCrypt.UnitTests/RsaTests/RsaTests.cs
@@ -1,10 +1,5 @@
1
using SafeCrypt.Helpers;
2
using SafeCrypt.RsaEncryption;
3
-using System;
4
-using System.Collections.Generic;
5
-using System.Linq;
6
-using System.Text;
7
-using System.Threading.Tasks;
8
9
namespace SafeCrypt.UnitTests.RsaTests;
10
@@ -20,11 +15,6 @@ public RsaTests()
20
15
[Fact]
21
16
public async Task EncryptAsync_DecryptAsync_ValidParameters_ReturnsOriginalData()
22
17
{
23
- // Example: Generate RSA keys
24
- //var rsaKeyPair = KeyGenerators.GenerateRsaKeys(2048);
25
- //string rsaPublicKey = rsaKeyPair.Item1;
26
- //string rsaPrivateKey = rsaKeyPair.Item2;
27
-
28
18
// Arrange
29
19
var model = new RsaEncryptionParameters
30
0 commit comments