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