This commit is contained in:
TheXamlGuy
2024-05-24 08:21:50 +01:00
parent 40a150fe80
commit c0c1a82846
103 changed files with 168 additions and 655 deletions
+3 -3
View File
@@ -2,12 +2,12 @@
namespace Toolkit.Foundation;
public class AesEncryptor :
public class AesEncryptor :
IEncryptor
{
private const int IvSize = 16;
public bool TryEncrypt(byte[] data,
public bool TryEncrypt(byte[] data,
byte[] key,
out byte[]? encryptedData)
{
@@ -46,4 +46,4 @@ public class AesEncryptor :
return false;
}
}
}
}