1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 16:53:26 +00:00
Files
mobile/src/App/Abstractions/Services/IKeyDerivationService.cs

7 lines
148 B
C#

namespace Bit.App.Abstractions
{
public interface IKeyDerivationService
{
byte[] DeriveKey(string password, string salt);
}
}