1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-10 04:23:21 +00:00
Files
mobile/src/App/Abstractions/Services/IKeyDerivationService.cs

7 lines
161 B
C#

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