encyption wip

This commit is contained in:
TheXamlGuy
2024-04-29 21:42:04 +01:00
parent bfdffb2901
commit 2a4194ee22
27 changed files with 437 additions and 137 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Bitvault
{
public interface IEncryptor
{
string? Encrypt(string plainText, byte[] key);
}
}