Knocks/BackEnd/Knoks.Framework/Cryptography/PasswordOptions.cs

13 lines
400 B
C#

using Microsoft.AspNetCore.Cryptography.KeyDerivation;
namespace Knoks.Framework.Cryptography
{
public class PasswordOptions : IPasswordOptions
{
public string Version { get; set; }
public string Peper { get; set; }
public KeyDerivationPrf Prf { get; set; }
public int IterationCount { get; set; }
public int NumBytesRequested { get; set; }
}
}