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
+9
View File
@@ -0,0 +1,9 @@
namespace Bitvault
{
public interface IVaultConnectionPersistence
{
void Dispose();
string? Get(string key);
void Set(string key, string connection);
}
}