Files
Walleby/Bitvault/ISecurityKeyFactory.cs
T
TheXamlGuy c1b6e595bc Mass rename
2024-05-12 11:02:19 +01:00

9 lines
171 B
C#

namespace Bitvault;
public interface ISecurityKeyFactory
{
SecurityKey? Create(byte[] phrase,
byte[]? encryptedKey = null,
byte[]? salt = null);
}