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

13 lines
326 B
C#

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