Files
Toolkit2/Toolkit.Foundation/IKeyDeriver.cs
T
2024-05-02 20:58:12 +01:00

6 lines
160 B
C#

namespace Toolkit.Foundation;
public interface IKeyDeriver
{
byte[] DeriveKey(string password, byte[] salt, int keySize = 32, int iterations = 10000);
}