9 lines
171 B
C#
9 lines
171 B
C#
namespace Bitvault;
|
|
|
|
public interface ISecurityKeyFactory
|
|
{
|
|
SecurityKey? Create(byte[] phrase,
|
|
byte[]? encryptedKey = null,
|
|
byte[]? salt = null);
|
|
}
|