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