1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-24 10:14:55 +02:00
bitwarden-mobile/src/Core/Enums/KdfType.cs
2019-04-08 16:04:41 -04:00

8 lines
101 B
C#

namespace Bit.Core.Enums
{
public enum KdfType : byte
{
PBKDF2_SHA256 = 0
}
}