mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 16:53:26 +00:00
7 lines
148 B
C#
7 lines
148 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IKeyDerivationService
|
|
{
|
|
byte[] DeriveKey(string password, string salt);
|
|
}
|
|
} |