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
+2 -2
View File
@@ -8,7 +8,7 @@ public class AesDecryptor :
private const int IvSize = 16;
public bool TryDecrypt(byte[] cipher,
byte[] key,
byte[] key,
out byte[]? decryptedData)
{
decryptedData = null;
@@ -47,4 +47,4 @@ public class AesDecryptor :
return false;
}
}
}
}