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
+4 -1
View File
@@ -1,5 +1,8 @@
namespace Toolkit.Foundation;
public interface IEncryptor
{
byte[] Encrypt(byte[] data, byte[] key);
bool TryEncrypt(byte[] data,
byte[] key,
out byte[]? encryptedData);
}