mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
8 lines
162 B
C#
8 lines
162 B
C#
|
|
namespace mRemoteNG.Security.KeyDerivation
|
|
{
|
|
public interface IKeyDerivationFunction
|
|
{
|
|
byte[] DeriveKey(string password, byte[] salt);
|
|
}
|
|
} |