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