9 lines
183 B
C#
9 lines
183 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IKeyDeriver
|
|
{
|
|
byte[] DeriveKey(byte[] phrased,
|
|
byte[] salt,
|
|
int keySize = 32,
|
|
int iterations = 10000);
|
|
} |