mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 10:13:42 +00:00
key derivation service that pinvokes into CommonCrypto for PBKDF2 key
This commit is contained in:
7
src/App/Abstractions/Services/IKeyDerivationService.cs
Normal file
7
src/App/Abstractions/Services/IKeyDerivationService.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface IKeyDerivationService
|
||||
{
|
||||
byte[] DeriveKey(string password, string salt);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user