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; } } }