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
+24
View File
@@ -0,0 +1,24 @@
namespace Bitvault;
public class VaultConnectionPersistence :
IVaultConnectionPersistence,
IDisposable
{
private string? connection;
public void Dispose()
{
connection = null;
}
public string? Get(string key)
{
return connection;
}
public void Set(string key,
string connection)
{
this.connection = connection;
}
}