Files
Walleby/Bitvault/ISecurityKeyFactory.cs
T
TheXamlGuy 12d1392207 Codemaid
2024-05-24 08:21:49 +01:00

8 lines
170 B
C#

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