vault unlocking WIP

This commit is contained in:
TheXamlGuy
2024-05-03 19:33:32 +01:00
parent 7582f63a68
commit abcff30da6
9 changed files with 92 additions and 43 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
namespace Toolkit.Foundation;
public interface IDecryptor
{
byte[] Decrypt(byte[] cipher,
byte[] key);
bool TryDecrypt(byte[] cipher,
byte[] key,
out byte[]? decryptedData);
}