This commit is contained in:
TheXamlGuy
2024-05-24 08:21:49 +01:00
parent e82fa8d05f
commit 12d1392207
90 changed files with 146 additions and 168 deletions
+2 -3
View File
@@ -5,7 +5,7 @@ namespace Bitvault;
public class SecurityKeyFactory(IKeyGenerator generator,
IKeyDeriver deriver,
IEncryptor encryptor,
IDecryptor decryptor) :
IDecryptor decryptor) :
ISecurityKeyFactory
{
public SecurityKey? Create(byte[] phrase,
@@ -30,5 +30,4 @@ public class SecurityKeyFactory(IKeyGenerator generator,
return new SecurityKey(salt, encryptedKey, decryptedKey);
}
}
}