1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-01 11:24:59 +02:00
bitwarden-mobile/src/Core/Abstractions/ICryptoPrimitiveService.cs

10 lines
219 B
C#
Raw Normal View History

2019-03-28 20:43:50 +01:00
using Bit.Core.Enums;
namespace Bit.Core.Abstractions
{
public interface ICryptoPrimitiveService
{
byte[] Pbkdf2(byte[] password, byte[] salt, CryptoHashAlgorithm algorithm, int iterations);
}
}