Files
TheXamlGuy c0c1a82846 Codemaid
2024-05-24 08:21:50 +01:00

9 lines
183 B
C#

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