Files
Walleby/Wallet/ISecurityKeyFactory.cs
T
2024-06-09 14:00:36 +01:00

8 lines
168 B
C#

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