mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
9 lines
219 B
C#
9 lines
219 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface ICryptoPrimitiveService
|
|
{
|
|
byte[] Pbkdf2(byte[] password, byte[] salt, CryptoHashAlgorithm algorithm, int iterations);
|
|
}
|
|
}
|